mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 00:29:56 +03:00
d0b75ddf9a
* use mkDerivation * separate shell code in own file * use shellcheck to lint shell code * remove rage version check since rage is greater than 0.5.0 on all maintained nixpkgs
37 lines
695 B
Nix
37 lines
695 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rage,
|
|
gnused,
|
|
nix,
|
|
mktemp,
|
|
diffutils,
|
|
substituteAll,
|
|
ageBin ? "${rage}/bin/rage",
|
|
shellcheck,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "agenix";
|
|
version = "0.13.0";
|
|
src = substituteAll {
|
|
inherit ageBin version;
|
|
sedBin = "${gnused}/bin/sed";
|
|
nixInstantiate = "${nix}/bin/nix-instantiate";
|
|
mktempBin = "${mktemp}/bin/mktemp";
|
|
diffBin = "${diffutils}/bin/diff";
|
|
src = ./agenix.sh;
|
|
};
|
|
dontUnpack = true;
|
|
|
|
doCheck = true;
|
|
checkInputs = [shellcheck];
|
|
postCheck = ''
|
|
shellcheck $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D $src ${placeholder "out"}/bin/agenix
|
|
'';
|
|
|
|
meta.description = "age-encrypted secrets for NixOS";
|
|
}
|