mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
5db5921e40
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ lib, buildGoModule, stdenv, vendorHash, go, callPackages }:
|
|
buildGoModule {
|
|
pname = "sops-install-secrets";
|
|
version = "0.0.1";
|
|
|
|
src = lib.sourceByRegex ../.. [ "go\.(mod|sum)" "pkgs" "pkgs/sops-install-secrets.*" ];
|
|
|
|
subPackages = [ "pkgs/sops-install-secrets" ];
|
|
|
|
# requires root privileges for tests
|
|
doCheck = false;
|
|
|
|
passthru.tests = callPackages ./nixos-test.nix { };
|
|
|
|
outputs = [ "out" ] ++
|
|
lib.lists.optionals (stdenv.isLinux) [ "unittest" ];
|
|
|
|
postInstall = ''
|
|
go test -c ./pkgs/sops-install-secrets
|
|
'' + lib.optionalString (stdenv.isLinux) ''
|
|
# *.test is only tested on linux. $unittest does not exist on darwin.
|
|
install -D ./sops-install-secrets.test $unittest/bin/sops-install-secrets.test
|
|
# newer versions of nixpkgs no longer require this step
|
|
if command -v remove-references-to; then
|
|
remove-references-to -t ${go} $unittest/bin/sops-install-secrets.test
|
|
fi
|
|
'';
|
|
|
|
inherit vendorHash;
|
|
|
|
meta = with lib; {
|
|
description = "Atomic secret provisioning based on sops";
|
|
homepage = "https://github.com/Mic92/sops-nix";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ mic92 ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|