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

View File

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