mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
6e94d93992
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
23 lines
552 B
Nix
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;
|
|
};
|
|
}
|