tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
oxtools: 1.1.3 -> 1.2.4
t4ccer
2 years ago
0aa3284c
397b1733
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
oxtools
default.nix
+7
-7
pkgs/os-specific/linux/oxtools/default.nix
···
2
, glibc, python3
3
}:
4
5
-
stdenv.mkDerivation rec {
6
pname = "0xtools";
7
-
version = "1.1.3";
8
9
src = fetchFromGitHub {
10
owner = "tanelpoder";
11
-
repo = pname;
12
-
rev = "v${version}";
13
-
sha256 = "sha256-pe64st3yhVfZi8/sTEfH1cNjx7JpqxDmxMmodpXnqaU=";
14
};
15
16
postPatch = ''
17
-
substituteInPlace lib/0xtools/proc.py \
18
--replace /usr/include/asm/unistd_64.h ${glibc.dev}/include/asm/unistd_64.h
19
'';
20
···
33
maintainers = with maintainers; [ astro ];
34
platforms = [ "x86_64-linux" ];
35
};
36
-
}
···
2
, glibc, python3
3
}:
4
5
+
stdenv.mkDerivation (finalAttrs: {
6
pname = "0xtools";
7
+
version = "1.2.4";
8
9
src = fetchFromGitHub {
10
owner = "tanelpoder";
11
+
repo = "0xtools";
12
+
rev = "v${finalAttrs.version}";
13
+
hash = "sha256-h0/HIbwb1CvFUh/NpozDUCjYGCH647lC7JhbpDCvaLk=";
14
};
15
16
postPatch = ''
17
+
substituteInPlace lib/0xtools/psnproc.py \
18
--replace /usr/include/asm/unistd_64.h ${glibc.dev}/include/asm/unistd_64.h
19
'';
20
···
33
maintainers = with maintainers; [ astro ];
34
platforms = [ "x86_64-linux" ];
35
};
36
+
})