chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / pv / pvsneslib / package.nix
blobfe78293e2e0799c65cdd3cdb9331f14e74f64fb5
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 , gcc
6 }:
8 stdenv.mkDerivation rec {
9   pname = "pvsneslib";
10   version = "4.2.0";
12   src = fetchFromGitHub {
13     owner = "alekmaul";
14     repo = "pvsneslib";
15     rev = version;
16     hash = "sha256-Cl4+WvjKbq5IPqf7ivVYwBYwDDWWHGNeq4nWXPxsUHw=";
17     fetchSubmodules = true;
18   };
20   nativeBuildInputs = [ gcc cmake ];
22   dontConfigure = true;
24   postPatch = ''
25     substituteInPlace tools/816-opt/Makefile \
26       --replace-fail 'LDFLAGS := -lpthread' 'LDFLAGS :=' \
27       --replace-fail 'LDFLAGS := -pthread' 'LDFLAGS += -pthread' \
28       --replace-fail 'LDFLAGS += -lpthread -static' '# LDFLAGS += -lpthread -static'
30     substituteInPlace tools/bin2txt/Makefile \
31                                     tools/gfx2snes/Makefile \
32                                     tools/gfx4snes/Makefile \
33                                     tools/snestools/Makefile \
34                                     tools/816-opt/Makefile \
35                                     tools/tmx2snes/Makefile \
36       --replace-fail '$(CFLAGS) $(OBJS)' '$(LDFLAGS) $(OBJS)'
38     substituteInPlace tools/smconv/Makefile \
39       --replace-fail '$(CFLAGS) $(LDFLAGS)' '$(LDFLAGS)'
41     substituteInPlace tools/constify/Makefile \
42       --replace-fail '$(CFLAGS) $(DEFINES) $(OBJS)' '$(LDFLAGS) $(DEFINES) $(OBJS)'
44     substituteInPlace tools/snestools/Makefile \
45       --replace-fail '-Wno-format' ' '
47     substituteInPlace tools/snesbrr/brr/Makefile \
48       --replace-fail 'LDFLAGS ' 'LDFLAGS :=
49       LDFLAGS '
51     substituteInPlace compiler/wla-dx/wlalink/write.c \
52       --replace-fail 'sort_anonymous_labels()' 'sort_anonymous_labels(void)'
53   '';
55   preBuild = ''
56     export PVSNESLIB_HOME=$(pwd)
57   '';
59   installPhase = ''
60     runHook preInstall
61     cp -r . $out
62     runHook postInstall
63   '';
65   meta = {
66     description = "Free and open source development kit for the Nintendo SNES";
67     homepage = "https://github.com/alekmaul/pvsneslib";
68     changelog = "https://github.com/alekmaul/pvsneslib/releases/tag/${src.rev}";
69     license = lib.licenses.mit;
70     maintainers = with lib.maintainers; [ soyouzpanda ];
71     mainProgram = "pvsneslib";
72     platforms = lib.platforms.all;
73   };