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

Merge pull request #83159 from khumba/pydf

pydf: install man page and default config file
This commit is contained in:
Matthew Bauer 2020-03-26 11:00:40 -05:00 committed by GitHub
commit e003ae1874
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,12 @@ python3Packages.buildPythonPackage rec {
sha256 = "7f47a7c3abfceb1ac04fc009ded538df1ae449c31203962a1471a4eb3bf21439";
};
postInstall = ''
mkdir -p $out/share/man/man1 $out/share/pydf
install -t $out/share/pydf -m 444 pydfrc
install -t $out/share/man/man1 -m 444 pydf.1
'';
meta = with stdenv.lib; {
description = "colourised df(1)-clone";
homepage = http://kassiopeia.juls.savba.sk/~garabik/software/pydf/;