From 06514608e1baf39ae29c0ac6bee1bbba862b9a8d Mon Sep 17 00:00:00 2001 From: Defelo Date: Tue, 4 Feb 2025 13:40:02 +0100 Subject: [PATCH] hashrat: 1.22 -> 1.23 --- pkgs/by-name/ha/hashrat/package.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/ha/hashrat/package.nix b/pkgs/by-name/ha/hashrat/package.nix index 728d4d64aae0..3c215d1e2474 100644 --- a/pkgs/by-name/ha/hashrat/package.nix +++ b/pkgs/by-name/ha/hashrat/package.nix @@ -2,31 +2,21 @@ lib, stdenv, fetchFromGitHub, - fetchpatch, versionCheckHook, nix-update-script, }: stdenv.mkDerivation (finalAttrs: { pname = "hashrat"; - version = "1.22"; + version = "1.23"; src = fetchFromGitHub { owner = "ColumPaget"; repo = "Hashrat"; tag = "v${finalAttrs.version}"; - hash = "sha256-mjjK315OUUFVdUY+zcCvm7yeo7XxourR1sghWbeFT7c="; + hash = "sha256-dDtn01eoODgRtsbEdtuXhib3fZLosP8ajJBGaG8Skss="; }; - patches = [ - # fix cross compilation by replacing hardcoded ar with AC_PROG_AR - # https://github.com/ColumPaget/Hashrat/pull/27 - (fetchpatch { - url = "https://github.com/ColumPaget/Hashrat/commit/a82615e02021245850a1703e613055da2520c8fd.patch"; - hash = "sha256-tjyhM2ahZBRoRP8WjyQhrI3l20oaqMtfYmOeAZVEZqU="; - }) - ]; - configureFlags = [ "--enable-xattr" ]; makeFlags = [ "PREFIX=$(out)" ];