From 186fa79bbca899c1d8c18b554b87116650c33cbc Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 16 Aug 2023 20:56:22 +0200 Subject: [PATCH 1/2] pv: 1.6.20 -> 1.7.24 Signed-off-by: Matthias Beyer --- pkgs/tools/misc/pv/default.nix | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/pkgs/tools/misc/pv/default.nix b/pkgs/tools/misc/pv/default.nix index 4438662de385..e9af23e91e9f 100644 --- a/pkgs/tools/misc/pv/default.nix +++ b/pkgs/tools/misc/pv/default.nix @@ -1,31 +1,22 @@ { lib , stdenv , fetchurl -, fetchpatch }: stdenv.mkDerivation rec { pname = "pv"; - version = "1.6.20"; + version = "1.7.24"; src = fetchurl { - url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.bz2"; - sha256 = "00y6zla8h653sn4axgqz7rr0x79vfwl62a7gn6lzn607zwg9acg8"; + url = "https://www.ivarch.com/programs/sources/pv-${version}.tar.gz"; + sha256 = "sha256-O/Q8WAnI1QBm6urqWhFfZQPFejjBUZdbcQqivuhXtl4="; }; - patches = [ - # Fix build on aarch64-darwin using patch from Homebrew - (fetchpatch { - url = "https://raw.githubusercontent.com/Homebrew/homebrew-core/0780f1df9fdbd8914ff50ac24eb0ec0d3561c1b7/Formula/pv.rb"; - sha256 = "001xayskfprri4s2gd3bqwajw6nz6nv0ggb0835par7q7bsd0dzr"; - }) - ]; - meta = { - homepage = "http://www.ivarch.com/programs/pv"; + 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; [ ]; - platforms = with lib.platforms; all; + platforms = lib.platforms.all; }; } From 6e94d939928536f95f3baf4efff0189acd7f6e62 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 16 Aug 2023 20:56:35 +0200 Subject: [PATCH 2/2] pv: Add myself as maintainer Signed-off-by: Matthias Beyer --- pkgs/tools/misc/pv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/pv/default.nix b/pkgs/tools/misc/pv/default.nix index e9af23e91e9f..236137ff7937 100644 --- a/pkgs/tools/misc/pv/default.nix +++ b/pkgs/tools/misc/pv/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { 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; [ ]; + maintainers = with lib.maintainers; [ matthiasbeyer ]; platforms = lib.platforms.all; }; }