nixpkgs/pkgs/applications/version-management/git-and-tools/git-secrets/default.nix

33 lines
843 B
Nix
Raw Normal View History

2018-11-28 11:08:47 +00:00
{ stdenv, fetchFromGitHub, makeWrapper, git, coreutils }:
2018-05-04 18:05:08 +00:00
2018-11-28 11:08:47 +00:00
stdenv.mkDerivation rec {
pname = "git-secrets";
version = "1.3.0";
2018-05-04 18:05:08 +00:00
src = fetchFromGitHub {
owner = "awslabs";
2018-11-28 11:08:47 +00:00
repo = "git-secrets";
2019-09-08 23:38:31 +00:00
rev = version;
sha256 = "10lnxg0q855zi3d6804ivlrn6dc817kilzdh05mmz8a0ccvm2qc7";
2018-05-04 18:05:08 +00:00
};
2018-11-28 11:08:47 +00:00
nativeBuildInputs = [ makeWrapper ];
dontBuild = true;
2018-05-04 18:05:08 +00:00
installPhase = ''
2018-11-28 11:08:47 +00:00
install -m755 -Dt $out/bin git-secrets
install -m444 -Dt $out/share/man/man1 git-secrets.1
2018-05-04 18:05:08 +00:00
wrapProgram $out/bin/git-secrets \
2018-11-28 11:08:47 +00:00
--prefix PATH : "${stdenv.lib.makeBinPath [ git coreutils ]}"
2018-05-04 18:05:08 +00:00
'';
2018-11-28 11:08:47 +00:00
meta = with stdenv.lib; {
description = "Prevents you from committing secrets and credentials into git repositories";
2018-05-08 23:17:44 +00:00
homepage = https://github.com/awslabs/git-secrets;
2018-11-28 11:08:47 +00:00
license = licenses.asl20;
platforms = platforms.all;
2018-05-04 18:05:08 +00:00
};
}