1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00
sops-nix/pkgs/sops-install-secrets/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, stdenv, vendorHash, go, callPackages }:
2020-07-06 06:30:09 +00:00
buildGoModule {
pname = "sops-install-secrets";
version = "0.0.1";
src = lib.sourceByRegex ../.. [ "go\.(mod|sum)" "pkgs" "pkgs/sops-install-secrets.*" ];
2020-07-06 06:30:09 +00:00
2020-07-12 12:50:55 +00:00
subPackages = [ "pkgs/sops-install-secrets" ];
2020-08-10 17:17:08 +00:00
# requires root privileges for tests
doCheck = false;
passthru.tests = callPackages ./nixos-test.nix { };
outputs = [ "out" ] ++
lib.lists.optionals (stdenv.isLinux) [ "unittest" ];
2020-11-13 09:39:17 +00:00
postInstall = ''
2020-11-13 09:39:17 +00:00
go test -c ./pkgs/sops-install-secrets
'' + lib.optionalString (stdenv.isLinux) ''
# *.test is only tested on linux. $unittest does not exist on darwin.
2020-11-13 09:39:17 +00:00
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
2020-11-13 09:39:17 +00:00
'';
2023-07-15 06:19:01 +00:00
inherit vendorHash;
2020-07-12 16:18:12 +00:00
meta = with lib; {
2020-07-12 16:18:12 +00:00
description = "Atomic secret provisioning based on sops";
homepage = "https://github.com/Mic92/sops-nix";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
2022-07-10 11:12:14 +00:00
platforms = platforms.linux ++ platforms.darwin;
2020-07-12 16:18:12 +00:00
};
2020-07-06 06:30:09 +00:00
}