Merge pull request #306463 from TheRealKeto/update/pv

pv: 1.8.5 -> 1.8.9
This commit is contained in:
Matthias Beyer 2024-04-24 10:44:43 +02:00 committed by GitHub
commit e720f4ba1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -3,21 +3,21 @@
, fetchurl
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "pv";
version = "1.8.5";
version = "1.8.9";
src = fetchurl {
url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.gz";
sha256 = "sha256-0ilI0GvgalvjczYxjeVAoiFb4QqwFj+M0jogFJZHt4A=";
url = "https://www.ivarch.com/programs/sources/pv-${finalAttrs.version}.tar.gz";
sha256 = "sha256-oHidj4xaCPrzcLWgfR2Tau/5UEpPSdp21BZHl6xGBuY=";
};
meta = {
homepage = "https://www.ivarch.com/programs/pv.shtml";
description = "Tool for monitoring the progress of data through a pipeline";
license = lib.licenses.artistic2;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ matthiasbeyer ];
platforms = lib.platforms.all;
mainProgram = "pv";
};
}
})