15 lines
268 B
Nix
15 lines
268 B
Nix
{ 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 *
|
|
'';
|
|
}
|