tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
uxn: unstable-2023-09-29 -> unstable-2023-10-23
Anderson Torres
2 years ago
8a80c682
803429df
+4
-9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ux
uxn
package.nix
+4
-9
pkgs/by-name/ux/uxn/package.nix
···
7
7
8
8
stdenv.mkDerivation (finalAttrs: {
9
9
pname = "uxn";
10
10
-
version = "unstable-2023-09-29";
10
10
+
version = "unstable-2023-10-23";
11
11
12
12
src = fetchFromSourcehut {
13
13
owner = "~rabbits";
14
14
repo = "uxn";
15
15
-
rev = "c71842aa8472f26c0ea7fbf92624659313c038ba";
16
16
-
hash = "sha256-Lo1AkK81Hv8A0jBfpR4lxlBJcWkh9LttURiXVoibKSs=";
15
15
+
rev = "798ebafdc8c27529217f159f8ff53edb0a8a328f";
16
16
+
hash = "sha256-OVCnJEdc/DdJJCks6c2jP9wK31VSNP1NBOsJZ2SFY+0=";
17
17
};
18
18
19
19
outputs = [ "out" "projects" ];
···
31
31
postPatch = ''
32
32
patchShebangs build.sh
33
33
substituteInPlace build.sh \
34
34
-
--replace "-L/usr/local/lib " "" \
35
35
-
--replace "\$(brew --prefix)/lib/libSDL2.a " ""
34
34
+
--replace "-L/usr/local/lib " ""
36
35
'';
37
36
38
37
buildPhase = ''
···
65
64
maintainers = with lib.maintainers; [ AndersonTorres ];
66
65
mainProgram = "uxnemu";
67
66
inherit (SDL2.meta) platforms;
68
68
-
# ofborg complains about an error trying to link inexistent SDL2 library
69
69
-
# For full logs, run:
70
70
-
# 'nix log /nix/store/bmyhh0lpifl9swvkpflqldv43vcrgci1-uxn-unstable-2023-08-10.drv'.
71
71
-
broken = stdenv.isDarwin;
72
67
};
73
68
})