add strongbox
This commit is contained in:
parent
d665c931d3
commit
7807c9b817
3 changed files with 16 additions and 1 deletions
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