nixpkgs/pkgs/tools/misc/pv/default.nix
Matthias Beyer 6e94d93992
pv: Add myself as maintainer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2023-08-20 09:01:09 +02:00

23 lines
552 B
Nix

{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "pv";
version = "1.7.24";
src = fetchurl {
url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.gz";
sha256 = "sha256-O/Q8WAnI1QBm6urqWhFfZQPFejjBUZdbcQqivuhXtl4=";
};
meta = {
homepage = "https://www.ivarch.com/programs/pv.shtml";
description = "Tool for monitoring the progress of data through a pipeline";
license = lib.licenses.artistic2;
maintainers = with lib.maintainers; [ matthiasbeyer ];
platforms = lib.platforms.all;
};
}