7ca75fad04
This makes the pydf derivation install the package's man page and default config file, so that `man pydf` works and the user has a default config file to work from. This default config file is placed in `share/pydf/` and isn't read by default; pydf still looks in `/etc` and `$HOME` instead. (The file is identical to the defaults in the executable itself except for additional colours applied to the `full_fs_colour` setting.)
24 lines
666 B
Nix
24 lines
666 B
Nix
{ stdenv, python3Packages }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "pydf";
|
|
version = "12";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
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/;
|
|
license = licenses.publicDomain;
|
|
maintainers = with maintainers; [ monsieurp ];
|
|
};
|
|
}
|