-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
765 additions
and
388 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ lib | ||
, buildGoModule | ||
, fetchFromGitHub | ||
, libfido2 | ||
, stdenv | ||
}: | ||
|
||
buildGoModule rec { | ||
pname = "age-plugin-fido2-hmac"; | ||
version = "0.2.3"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "olastor"; | ||
repo = "age-plugin-fido2-hmac"; | ||
rev = "v${version}"; | ||
hash = "sha256-P2gNOZeuODWEb/puFe6EA1wW3pc0xgM567qe4FKbFXg="; | ||
}; | ||
|
||
vendorHash = "sha256-h4/tyq9oZt41IfRJmmsLHUpJiPJ7YuFu59ccM7jHsFo="; | ||
|
||
ldflags = [ "-s" "-w" ]; | ||
|
||
buildInputs = [ | ||
libfido2 | ||
]; | ||
|
||
meta = with lib; { | ||
description = "Age plugin to encrypt files with fido2 tokens using the hmac-secret extension and non-discoverable credentials"; | ||
homepage = "https://github.com/olastor/age-plugin-fido2-hmac/"; | ||
license = licenses.mit; | ||
maintainers = with maintainers; [ matthewcroughan ]; | ||
mainProgram = "age-plugin-fido2-hmac"; | ||
broken = stdenv.isDarwin; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
lib, | ||
gtk3, | ||
glib, | ||
dbus, | ||
curl, | ||
wget, | ||
cairo, | ||
stdenv, | ||
librsvg, | ||
libsoup, | ||
fetchzip, | ||
openssl_3, | ||
webkitgtk, | ||
gdk-pixbuf, | ||
pkg-config, | ||
makeDesktopItem, | ||
copyDesktopItems, | ||
autoPatchelfHook, | ||
}: | ||
let | ||
version = "8.0.0"; | ||
in | ||
stdenv.mkDerivation { | ||
pname = "catppuccinifier-gui"; | ||
inherit version; | ||
|
||
src = fetchzip { | ||
url = "https://github.com/lighttigerXIV/catppuccinifier/releases/download/${version}/Catppuccinifer-Linux-${version}.zip"; | ||
hash = "sha256-fG6YhLsjvMUIWsOnm+GSOh6LclCAISPSRiDQdWLlAR4="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
autoPatchelfHook | ||
pkg-config | ||
copyDesktopItems | ||
]; | ||
|
||
buildInputs = [ | ||
curl | ||
wget | ||
webkitgtk | ||
gtk3 | ||
cairo | ||
gdk-pixbuf | ||
libsoup | ||
glib | ||
dbus | ||
openssl_3 | ||
librsvg | ||
]; | ||
|
||
installPhase = '' | ||
runHook preInstall | ||
install -Dm555 installation-files/catppuccinifier-gui "$out/bin/catppuccinifier-gui" | ||
install -Dm644 installation-files/catppuccinifier.png "$out/share/pixmaps/catppuccinifier.png" | ||
runHook postInstall | ||
''; | ||
|
||
desktopItems = [ | ||
(makeDesktopItem { | ||
desktopName = "catppuccinifier"; | ||
name = "catppuccinifier"; | ||
exec = "catppuccinifier-gui"; | ||
icon = "catppuccinifier"; | ||
comment = "Apply catppuccin flavors to your wallpapers"; | ||
}) | ||
]; | ||
|
||
meta = { | ||
description = "Apply catppuccin flavors to your wallpapers"; | ||
homepage = "https://github.com/lighttigerXIV/catppuccinifier"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ isabelroses ]; | ||
platforms = [ "x86_64-linux" ]; | ||
mainProgram = "catppuccinifier-gui"; | ||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ lib | ||
, buildGoModule | ||
, fetchFromGitHub | ||
}: | ||
|
||
let | ||
pname = "gate"; | ||
version = "0.36.7"; | ||
in | ||
buildGoModule { | ||
inherit pname version; | ||
|
||
src = fetchFromGitHub { | ||
owner = "minekube"; | ||
repo = "gate"; | ||
rev = "refs/tags/v${version}"; | ||
hash = "sha256-WHxpx20O/HuCWqbY4zTxcjyIhW3+FQtTz5sUGAda71g="; | ||
}; | ||
|
||
vendorHash = "sha256-dswNJQWqN+u/mnpbj9se2j9uEi0ewNTXVlN3WnNbcyg="; | ||
|
||
ldflags = [ "-s" "-w" ]; | ||
|
||
meta = { | ||
description = "High-Performance, Low-Memory, Lightweight, Extensible Minecraft Reverse Proxy"; | ||
longDescription = '' | ||
Gate is an extensible, high performant & paralleled Minecraft proxy server | ||
with scalability, flexibility & excellent server version support - written in Go | ||
and ready for the cloud! | ||
''; | ||
homepage = "https://github.com/minekube/gate"; | ||
license = lib.licenses.asl20; | ||
maintainers = with lib.maintainers; [ XBagon ]; | ||
mainProgram = "gate"; | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.