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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
836 B
Nix
Raw Normal View History

{ lib, 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 \
2021-01-15 13:21:58 +00:00
--prefix PATH : "${lib.makeBinPath [ git coreutils ]}"
2018-05-04 18:05:08 +00:00
'';
meta = with lib; {
2018-11-28 11:08:47 +00:00
description = "Prevents you from committing secrets and credentials into git repositories";
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
};
}