2016-08-07 16:52:01 +01:00
|
|
|
{ stdenv, fetchurl, texinfo, alsaLib, libpulseaudio, CoreAudio }:
|
2015-02-03 11:23:23 +00:00
|
|
|
|
2016-08-07 16:52:01 +01:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optional optionals optionalString;
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2017-06-20 06:20:41 +01:00
|
|
|
name = "libmikmod-3.3.11";
|
2010-04-18 19:57:35 +01:00
|
|
|
src = fetchurl {
|
2015-04-17 08:37:42 +01:00
|
|
|
url = "mirror://sourceforge/mikmod/${name}.tar.gz";
|
2017-06-20 06:20:41 +01:00
|
|
|
sha256 = "1smb291jr4qm2cdk3gfpmh0pr23rx3jw3fw0j1zr3b4ih7727fni";
|
2010-04-18 19:57:35 +01:00
|
|
|
};
|
2015-02-03 11:23:23 +00:00
|
|
|
|
2015-04-17 08:37:42 +01:00
|
|
|
buildInputs = [ texinfo ]
|
2016-08-07 16:52:01 +01:00
|
|
|
++ optionals stdenv.isLinux [ alsaLib libpulseaudio ]
|
|
|
|
++ optional stdenv.isDarwin CoreAudio;
|
2015-04-17 08:37:42 +01:00
|
|
|
propagatedBuildInputs =
|
2016-08-07 16:52:01 +01:00
|
|
|
optional stdenv.isLinux libpulseaudio;
|
2015-04-17 08:37:42 +01:00
|
|
|
|
2016-08-07 16:52:01 +01:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isLinux "-lasound";
|
2013-07-04 05:58:32 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-04-18 19:57:35 +01:00
|
|
|
description = "A library for playing tracker music module files";
|
2013-07-04 05:58:32 +01:00
|
|
|
homepage = http://mikmod.shlomifish.org/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ astsmtl lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
2010-04-18 19:57:35 +01:00
|
|
|
longDescription = ''
|
|
|
|
A library for playing tracker music module files supporting many formats,
|
|
|
|
including MOD, S3M, IT and XM.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|