2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, alsaLib, libxmp }:
|
2014-06-10 05:03:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-01-28 14:21:53 +00:00
|
|
|
name = "xmp-4.1.0";
|
2014-06-10 05:03:13 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-06-10 05:03:13 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ alsaLib libxmp ];
|
2014-06-10 05:03:13 +01:00
|
|
|
}
|