This was a duplicate package, we already had it under the name game-music-emu. This commit merges the stdenv reference fix that was present in libgme into game-music-emu as well.
···1-{ lib, stdenv, fetchFromBitbucket, cmake, removeReferencesTo }:
2-3-stdenv.mkDerivation rec {
4- pname = "libgme";
5- version = "0.6.3";
6-7- meta = with lib; {
8- description = "A collection of video game music chip emulators";
9- homepage = "https://bitbucket.org/mpyne/game-music-emu/overview";
10- license = licenses.lgpl21;
11- platforms = platforms.all;
12- maintainers = with maintainers; [ lheckemann ];
13- };
14-15- src = fetchFromBitbucket {
16- owner = "mpyne";
17- repo = "game-music-emu";
18- rev = version;
19- sha256 = "100ahb4n4pvgcry9xzlf2fr4j57n5h9x7pvyhhxys4dcy8axqqsy";
20- };
21-22- nativeBuildInputs = [ cmake removeReferencesTo ];
23-24- # These checks fail on aarch64-darwin
25- cmakeFlags = [ "-DENABLE_UBSAN=OFF" ];
26-27- # It used to reference it, in the past, but thanks to the postFixup hook, now
28- # it doesn't.
29- disallowedReferences = [ stdenv.cc.cc ];
30-31- postFixup = lib.optionalString stdenv.isLinux ''
32- remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/lib/libgme.so)"
33- '';
34-}
···0000000000000000000000000000000000
+1
pkgs/top-level/aliases.nix
···710 liberation_ttf_v2_from_source = throw "'liberation_ttf_v2_from_source' has been renamed to/replaced by 'liberation_ttf_v2'"; # Converted to throw 2022-02-22
711 liberationsansnarrow = throw "'liberationsansnarrow' has been renamed to/replaced by 'liberation-sans-narrow'"; # Converted to throw 2022-02-22
712 libgksu = throw "libgksu has been removed"; # Added 2022-01-16
0713 libgnome_keyring = throw "'libgnome_keyring' has been renamed to/replaced by 'libgnome-keyring'"; # Converted to throw 2022-02-22
714 libgnome_keyring3 = throw "'libgnome_keyring3' has been renamed to/replaced by 'libgnome-keyring3'"; # Converted to throw 2022-02-22
715 libgpgerror = libgpg-error; # Added 2021-09-04
···710 liberation_ttf_v2_from_source = throw "'liberation_ttf_v2_from_source' has been renamed to/replaced by 'liberation_ttf_v2'"; # Converted to throw 2022-02-22
711 liberationsansnarrow = throw "'liberationsansnarrow' has been renamed to/replaced by 'liberation-sans-narrow'"; # Converted to throw 2022-02-22
712 libgksu = throw "libgksu has been removed"; # Added 2022-01-16
713+ libgme = game-music-emu; # Added 2022-07-20
714 libgnome_keyring = throw "'libgnome_keyring' has been renamed to/replaced by 'libgnome-keyring'"; # Converted to throw 2022-02-22
715 libgnome_keyring3 = throw "'libgnome_keyring3' has been renamed to/replaced by 'libgnome-keyring3'"; # Converted to throw 2022-02-22
716 libgpgerror = libgpg-error; # Added 2021-09-04