add strongbox
This commit is contained in:
parent
d665c931d3
commit
7807c9b817
3 changed files with 16 additions and 1 deletions
|
|
@ -85,7 +85,7 @@
|
|||
packages = with pkgs; [
|
||||
firefox
|
||||
ykfde
|
||||
wow-addon-manager
|
||||
strongbox
|
||||
# thunderbird
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@ self: super: {
|
|||
bento = (super.callPackage ../pkgs/bento { });
|
||||
ykfde = (super.callPackage ../pkgs/ykfde { });
|
||||
wow-addon-manager = (super.callPackage ../pkgs/wow-addon-manager { });
|
||||
strongbox = (super.callPackage ../pkgs/strongbox { });
|
||||
howdy = (super.callPackage ../pkgs/howdy { });
|
||||
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 *
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue