nixpkgs/pkgs/tools/misc/pv/default.nix
Mateusz Kowalczyk 007f80c1d0 Turn more licenses into lib.licenses style
Should eval cleanly, as far as -A tarball tells me.

Relevant: issue #2999, issue #739
2014-11-06 00:48:16 +00:00

19 lines
532 B
Nix

{ stdenv, fetchurl } :
stdenv.mkDerivation rec {
name = "pv-1.5.7";
src = fetchurl {
url = "http://www.ivarch.com/programs/sources/${name}.tar.bz2";
sha256 = "15srxzyssr8l25bl3rws476nx3fl58bdlh55gyv8cc3hpdhm0ly8";
};
meta = {
homepage = http://www.ivarch.com/programs/pv;
description = "Tool for monitoring the progress of data through a pipeline";
license = stdenv.lib.licenses.artistic2;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}