summary refs log tree commit diff
path: root/pkgs/os-specific/linux/oxtools
diff options
context:
space:
mode:
authort4ccer <t4ccer@gmail.com>2023-09-24 00:34:10 -0600
committert4ccer <t4ccer@gmail.com>2023-09-24 00:34:10 -0600
commit0aa3284cedc271fcefdf2326fda8e92df16c12c9 (patch)
tree8197ac22f092c48877ee398794ecc87459e6be1b /pkgs/os-specific/linux/oxtools
parent397b1733f45dc601e82ab9e13d5d427167fc284e (diff)
downloadnixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar.gz
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar.bz2
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar.lz
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar.xz
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.tar.zst
nixpkgs-0aa3284cedc271fcefdf2326fda8e92df16c12c9.zip
oxtools: 1.1.3 -> 1.2.4
Diffstat (limited to 'pkgs/os-specific/linux/oxtools')
-rw-r--r--pkgs/os-specific/linux/oxtools/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/os-specific/linux/oxtools/default.nix b/pkgs/os-specific/linux/oxtools/default.nix
index 02afb28e66e..c16e12ab5e1 100644
--- a/pkgs/os-specific/linux/oxtools/default.nix
+++ b/pkgs/os-specific/linux/oxtools/default.nix
@@ -2,19 +2,19 @@
 , glibc, python3
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "0xtools";
-  version = "1.1.3";
+  version = "1.2.4";
 
   src = fetchFromGitHub {
     owner = "tanelpoder";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-pe64st3yhVfZi8/sTEfH1cNjx7JpqxDmxMmodpXnqaU=";
+    repo = "0xtools";
+    rev = "v${finalAttrs.version}";
+    hash = "sha256-h0/HIbwb1CvFUh/NpozDUCjYGCH647lC7JhbpDCvaLk=";
   };
 
   postPatch = ''
-    substituteInPlace lib/0xtools/proc.py \
+    substituteInPlace lib/0xtools/psnproc.py \
       --replace /usr/include/asm/unistd_64.h ${glibc.dev}/include/asm/unistd_64.h
   '';
 
@@ -33,4 +33,4 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ astro ];
     platforms = [ "x86_64-linux" ];
   };
-}
+})