add strongbox
This commit is contained in:
@@ -85,7 +85,7 @@
|
|||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
ykfde
|
ykfde
|
||||||
wow-addon-manager
|
strongbox
|
||||||
# thunderbird
|
# thunderbird
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ self: super: {
|
|||||||
bento = (super.callPackage ../pkgs/bento { });
|
bento = (super.callPackage ../pkgs/bento { });
|
||||||
ykfde = (super.callPackage ../pkgs/ykfde { });
|
ykfde = (super.callPackage ../pkgs/ykfde { });
|
||||||
wow-addon-manager = (super.callPackage ../pkgs/wow-addon-manager { });
|
wow-addon-manager = (super.callPackage ../pkgs/wow-addon-manager { });
|
||||||
|
strongbox = (super.callPackage ../pkgs/strongbox { });
|
||||||
howdy = (super.callPackage ../pkgs/howdy { });
|
howdy = (super.callPackage ../pkgs/howdy { });
|
||||||
linux-enable-ir-emitter = (super.callPackage ../pkgs/linux-enable-ir-emitter { });
|
linux-enable-ir-emitter = (super.callPackage ../pkgs/linux-enable-ir-emitter { });
|
||||||
}
|
}
|
||||||
|
|||||||
14
utils/pkgs/strongbox/default.nix
Normal file
14
utils/pkgs/strongbox/default.nix
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{ lib, stdenv, ... }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "strongbox";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/ogri-la/strongbox/releases/download/${version}/strongbox"
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
chmod +x strongbox
|
||||||
|
install -D --target $out/bin *
|
||||||
|
'';
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user