Files
nixos/utils/pkgs/strongbox/default.nix
2023-09-29 12:06:13 +02:00

15 lines
278 B
Nix

{ lib, stdenv, fetchurl, ... }:
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 *
'';
}