mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-27 06:34:58 +08:00
18 lines
354 B
Nix
18 lines
354 B
Nix
{
|
|
sops-install-secrets,
|
|
golangci-lint,
|
|
}:
|
|
sops-install-secrets.overrideAttrs (old: {
|
|
name = "golangci-lint";
|
|
nativeBuildInputs = old.nativeBuildInputs ++ [
|
|
golangci-lint
|
|
];
|
|
buildPhase = ''
|
|
HOME=$TMPDIR golangci-lint run --timeout 360s
|
|
'';
|
|
doCheck = false;
|
|
installPhase = ''
|
|
touch $out $unittest
|
|
'';
|
|
fixupPhase = ":";
|
|
})
|