summary refs log tree commit diff
path: root/pkgs/os-specific/linux/numatop/default.nix
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2023-10-01 18:16:25 +0200
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2023-10-17 20:19:00 +0200
commit1a7901f8f84afe6ae8205fbf7b829d09803ecf26 (patch)
treed55ed392903132a0d6ee58786efbb04d07b60ee7 /pkgs/os-specific/linux/numatop/default.nix
parent291a2e809b85e209e817d1d60dafebb62d89695c (diff)
downloadnixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar.gz
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar.bz2
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar.lz
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar.xz
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.tar.zst
nixpkgs-1a7901f8f84afe6ae8205fbf7b829d09803ecf26.zip
numatop: make patch urls reproducible
Diffstat (limited to 'pkgs/os-specific/linux/numatop/default.nix')
-rw-r--r--pkgs/os-specific/linux/numatop/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/numatop/default.nix b/pkgs/os-specific/linux/numatop/default.nix
index ad0138f18b7..f4995264b09 100644
--- a/pkgs/os-specific/linux/numatop/default.nix
+++ b/pkgs/os-specific/linux/numatop/default.nix
@@ -16,12 +16,14 @@ stdenv.mkDerivation rec {
 
   patches = [
     (fetchpatch {
-      url = "https://github.com/intel/numatop/pull/54.patch";
+      # https://github.com/intel/numatop/pull/54
+      url = "https://github.com/intel/numatop/compare/eab0ac5253c5843aa0f0ac36e2eec7612207711b...c1001fd926c24eae2d40729492e07270ce133b72.patch";
       sha256 = "sha256-TbMLv7TT9T8wE4uJ1a/AroyPPwrwL0eX5IBLsh9GTTM=";
       name = "fix-string-operations.patch";
     })
     (fetchpatch {
-      url = "https://github.com/intel/numatop/pull/64.patch";
+      # https://github.com/intel/numatop/pull/64
+      url = "https://github.com/intel/numatop/commit/635e2ce2ccb1ac793cc276a7fcb8a92b1ffefa5d.patch";
       sha256 = "sha256-IevbSFJRTS5iQ5apHOVXzF67f3LJaW6j7DySFmVuyiM=";
       name = "fix-format-strings-mvwprintw.patch";
     })