summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorTravis A. Everett <travis.a.everett@gmail.com>2021-02-21 16:42:18 -0600
committerTravis A. Everett <travis.a.everett@gmail.com>2021-02-27 15:05:28 -0600
commit7823d6a449dfd5cf598edf88330c3ae34d072d25 (patch)
treea1fc2d2c1684d576f055c5929c27ff20ed75c7ac /pkgs/development/misc
parentcaa23be256645d6d3c95c0342239ae2f507f7778 (diff)
downloadnixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar.gz
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar.bz2
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar.lz
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar.xz
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.tar.zst
nixpkgs-7823d6a449dfd5cf598edf88330c3ae34d072d25.zip
resholve: 0.4.2 -> 0.5.0
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/resholve/deps.nix6
-rw-r--r--pkgs/development/misc/resholve/resholve.nix7
2 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/development/misc/resholve/deps.nix b/pkgs/development/misc/resholve/deps.nix
index 86bcba57075..6a1d9c77b5a 100644
--- a/pkgs/development/misc/resholve/deps.nix
+++ b/pkgs/development/misc/resholve/deps.nix
@@ -60,13 +60,13 @@ rec {
   # resholve's primary dependency is this developer build of the oil shell.
   oildev = python27Packages.buildPythonPackage rec {
     pname = "oildev-unstable";
-    version = "2020-03-31";
+    version = "2021-02-26";
 
     src = fetchFromGitHub {
       owner = "oilshell";
       repo = "oil";
-      rev = "ea80cdad7ae1152a25bd2a30b87fe3c2ad32394a";
-      sha256 = "0pxn0f8qbdman4gppx93zwml7s5byqfw560n079v68qjgzh2brq2";
+      rev = "11c6bd3ca0e126862c7a1f938c8510779837affa";
+      hash = "sha256-UTQywtx+Dn1/qx5uocqgGn7oFYW4R5DbuiRNF8t/BzY=";
 
       /*
       It's not critical to drop most of these; the primary target is
diff --git a/pkgs/development/misc/resholve/resholve.nix b/pkgs/development/misc/resholve/resholve.nix
index e8b4ed2cfb2..9b1cc921cd0 100644
--- a/pkgs/development/misc/resholve/resholve.nix
+++ b/pkgs/development/misc/resholve/resholve.nix
@@ -11,12 +11,12 @@
 , doCheck ? true
 }:
 let
-  version = "0.4.2";
+  version = "0.5.0";
   rSrc = fetchFromGitHub {
     owner = "abathur";
     repo = "resholve";
     rev = "v${version}";
-    hash = "sha256-ArUQjqh4LRvFLzHiTIcae0q/VFxFF/X9eOFeRnYmTO0=";
+    hash = "sha256-dscmT0ss1buP56QzQtfs2HANr9oWWMxCS+fwBIKBxv4=";
   };
   deps = callPackage ./deps.nix {
     /*
@@ -29,6 +29,9 @@ let
       "${rSrc}/0002-add_MANIFEST_in.patch"
       "${rSrc}/0003-fix_codegen_shebang.patch"
       "${rSrc}/0004-disable-internal-py-yajl-for-nix-built.patch"
+      "${rSrc}/0005_revert_libc_locale.patch"
+      "${rSrc}/0006_disable_failing_libc_tests.patch"
+      "${rSrc}/0007_restore_root_init_py.patch"
     ];
   };
 in