nixpkgs/pkgs/applications/misc/pydf/default.nix

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

26 lines
679 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2019-04-25 22:00:32 +00:00
python3Packages.buildPythonPackage rec {
pname = "pydf";
version = "12";
src = fetchPypi {
2019-04-25 22:00:32 +00:00
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 lib; {
2019-04-25 22:00:32 +00:00
description = "colourised df(1)-clone";
homepage = "http://kassiopeia.juls.savba.sk/~garabik/software/pydf/";
2024-01-27 14:30:57 +00:00
mainProgram = "pydf";
2019-04-25 22:00:32 +00:00
license = licenses.publicDomain;
maintainers = with maintainers; [ monsieurp ];
};
}