1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

git-series: install man page

This commit is contained in:
Venkateswara Rao Mandela 2017-06-05 22:28:16 +05:30
parent 677f194a10
commit abc4f5acf5

View file

@ -18,6 +18,11 @@ buildRustPackage rec {
nativeBuildInputs = [ cmake pkgconfig perl ];
buildInputs = [ openssl zlib ];
postBuild = ''
mkdir -p "$out/man/man1"
cp "$src/git-series.1" "$out/man/man1"
'';
meta = with stdenv.lib; {
description = "A tool to help with formatting git patches for review on mailing lists";
longDescription = ''