2014-06-10 05:03:13 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, alsaLib, libxmp }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-28 14:21:53 +00:00
|
|
|
name = "xmp-4.1.0";
|
2014-06-10 05:03:13 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Extended module player";
|
|
|
|
homepage = "http://xmp.sourceforge.net/";
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xmp/xmp/${name}.tar.gz";
|
2018-01-28 14:21:53 +00:00
|
|
|
sha256 = "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x";
|
2014-06-10 05:03:13 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ alsaLib libxmp ];
|
2014-06-10 05:03:13 +01:00
|
|
|
}
|