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.
···11-{ lib, stdenv, fetchFromBitbucket, cmake, removeReferencesTo }:
22-33-stdenv.mkDerivation rec {
44- pname = "libgme";
55- version = "0.6.3";
66-77- meta = with lib; {
88- description = "A collection of video game music chip emulators";
99- homepage = "https://bitbucket.org/mpyne/game-music-emu/overview";
1010- license = licenses.lgpl21;
1111- platforms = platforms.all;
1212- maintainers = with maintainers; [ lheckemann ];
1313- };
1414-1515- src = fetchFromBitbucket {
1616- owner = "mpyne";
1717- repo = "game-music-emu";
1818- rev = version;
1919- sha256 = "100ahb4n4pvgcry9xzlf2fr4j57n5h9x7pvyhhxys4dcy8axqqsy";
2020- };
2121-2222- nativeBuildInputs = [ cmake removeReferencesTo ];
2323-2424- # These checks fail on aarch64-darwin
2525- cmakeFlags = [ "-DENABLE_UBSAN=OFF" ];
2626-2727- # It used to reference it, in the past, but thanks to the postFixup hook, now
2828- # it doesn't.
2929- disallowedReferences = [ stdenv.cc.cc ];
3030-3131- postFixup = lib.optionalString stdenv.isLinux ''
3232- remove-references-to -t ${stdenv.cc.cc} "$(readlink -f $out/lib/libgme.so)"
3333- '';
3434-}
+1
pkgs/top-level/aliases.nix
···710710 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
711711 liberationsansnarrow = throw "'liberationsansnarrow' has been renamed to/replaced by 'liberation-sans-narrow'"; # Converted to throw 2022-02-22
712712 libgksu = throw "libgksu has been removed"; # Added 2022-01-16
713713+ libgme = game-music-emu; # Added 2022-07-20
713714 libgnome_keyring = throw "'libgnome_keyring' has been renamed to/replaced by 'libgnome-keyring'"; # Converted to throw 2022-02-22
714715 libgnome_keyring3 = throw "'libgnome_keyring3' has been renamed to/replaced by 'libgnome-keyring3'"; # Converted to throw 2022-02-22
715716 libgpgerror = libgpg-error; # Added 2021-09-04