summary refs log tree commit diff
path: root/pkgs/os-specific/linux/reptyr/default.nix
diff options
context:
space:
mode:
authorSamuel Tam <heiyiutam@gmail.com>2022-07-17 18:17:10 +0800
committerusertam <heiyiutam@gmail.com>2022-07-27 16:59:09 +0800
commitf9f2d3a5713c2b08c38008c98d97224ed6d203f4 (patch)
tree274597d723b8c5ba7f955b608115c33a2728f65a /pkgs/os-specific/linux/reptyr/default.nix
parentfe4be92e42ef0ebf5bf9e9fdc73ed6832b00e6d3 (diff)
downloadnixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar.gz
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar.bz2
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar.lz
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar.xz
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.tar.zst
nixpkgs-f9f2d3a5713c2b08c38008c98d97224ed6d203f4.zip
reptyr: 0.7.0 -> 0.9.0
Diffstat (limited to 'pkgs/os-specific/linux/reptyr/default.nix')
-rw-r--r--pkgs/os-specific/linux/reptyr/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/os-specific/linux/reptyr/default.nix b/pkgs/os-specific/linux/reptyr/default.nix
index 0e635583d64..f02b0acd349 100644
--- a/pkgs/os-specific/linux/reptyr/default.nix
+++ b/pkgs/os-specific/linux/reptyr/default.nix
@@ -1,24 +1,16 @@
-{ stdenv, lib, fetchFromGitHub, fetchpatch, python2 }:
+{ stdenv, lib, fetchFromGitHub, python2 }:
 
 stdenv.mkDerivation rec {
-  version = "0.7.0";
+  version = "0.9.0";
   pname = "reptyr";
 
   src = fetchFromGitHub {
     owner = "nelhage";
     repo = "reptyr";
     rev = "reptyr-${version}";
-    sha256 = "1hnijfz1ab34j2h2cxc3f43rmbclyihgn9x9wxa7jqqgb2xm71hj";
+    sha256 = "sha256-gM3aMEqk71RWUN1NxByd21tIzp6PmJ54Cqrh5MsjHtI=";
   };
 
-  patches = [
-    # Fix tests hanging
-    (fetchpatch {
-      url = "https://github.com/nelhage/reptyr/commit/bca3070ac0f3888b5d37ee162505be81b3b496ff.patch";
-      sha256 = "0w6rpv9k4a80q0ijzdq5hlpr37ncr284piqjv5agy8diniwlilab";
-    })
-  ];
-
   makeFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
 
   checkInputs = [ (python2.withPackages (p: [ p.pexpect ])) ];
@@ -34,6 +26,7 @@ stdenv.mkDerivation rec {
       "armv6l-linux"
       "armv7l-linux"
       "aarch64-linux"
+      "riscv64-linux"
     ];
     maintainers = with lib.maintainers; [raskin];
     license = lib.licenses.mit;