mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
libmikmod: fix build on darwin
* build with gccApple
This commit is contained in:
parent
970346e2d1
commit
c449a67e01
@ -6,15 +6,17 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "07k6iyx6pyzisncgdkd071w2dhm3rx6l34hbja3wbc7rpf888k3k";
|
||||
};
|
||||
buildInputs = [ texinfo ];
|
||||
meta = {
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A library for playing tracker music module files";
|
||||
homepage = http://mikmod.shlomifish.org/;
|
||||
license = licenses.lgpl2Plus;
|
||||
maintainers = with maintainers; [ astsmtl lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
|
||||
longDescription = ''
|
||||
A library for playing tracker music module files supporting many formats,
|
||||
including MOD, S3M, IT and XM.
|
||||
'';
|
||||
homepage = http://mikmod.shlomifish.org/;
|
||||
license = "LGPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
||||
|
@ -4676,7 +4676,12 @@ let
|
||||
|
||||
libmicrohttpd = callPackage ../development/libraries/libmicrohttpd { };
|
||||
|
||||
libmikmod = callPackage ../development/libraries/libmikmod { };
|
||||
libmikmod = callPackage ../development/libraries/libmikmod {
|
||||
# resolve the "stray '@' in program" errors
|
||||
stdenv = if stdenv.isDarwin
|
||||
then overrideGCC stdenv gccApple
|
||||
else stdenv;
|
||||
};
|
||||
|
||||
libmilter = callPackage ../development/libraries/libmilter { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user