git-secrets: install manpage

This commit is contained in:
Mario Rodas 2018-11-28 06:08:47 -05:00
parent 947be9e992
commit 7476972553
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027
1 changed files with 14 additions and 22 deletions

View File

@ -1,40 +1,32 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper, git }: { stdenv, fetchFromGitHub, makeWrapper, git, coreutils }:
let stdenv.mkDerivation rec {
name = "git-secrets-${version}";
version = "1.2.1"; version = "1.2.1";
repo = "git-secrets";
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
inherit repo;
owner = "awslabs"; owner = "awslabs";
repo = "git-secrets";
rev = "${version}"; rev = "${version}";
sha256 = "14jsm4ks3k5d9iq3jr23829izw040pqpmv7dz8fhmvx6qz8fybzg"; sha256 = "14jsm4ks3k5d9iq3jr23829izw040pqpmv7dz8fhmvx6qz8fybzg";
}; };
buildInputs = [ makeWrapper git]; nativeBuildInputs = [ makeWrapper ];
# buildPhase = '' dontBuild = true;
# make man # TODO: need rst2man.py
# '';
installPhase = '' installPhase = ''
install -D git-secrets $out/bin/git-secrets install -m755 -Dt $out/bin git-secrets
install -m444 -Dt $out/share/man/man1 git-secrets.1
wrapProgram $out/bin/git-secrets \ wrapProgram $out/bin/git-secrets \
--prefix PATH : "${lib.makeBinPath [ git ]}" --prefix PATH : "${stdenv.lib.makeBinPath [ git coreutils ]}"
# TODO: see above note on rst2man.py
# mkdir $out/share
# cp -r man $out/share
''; '';
meta = { meta = with stdenv.lib; {
description = "Prevents you from committing passwords and other sensitive information to a git repository"; description = "Prevents you from committing secrets and credentials into git repositories";
homepage = https://github.com/awslabs/git-secrets; homepage = https://github.com/awslabs/git-secrets;
license = stdenv.lib.licenses.asl20; license = licenses.asl20;
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
}; };
} }