2014-06-10 03:59:55 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-02-27 15:18:06 +00:00
|
|
|
name = "libxmp-4.3.11";
|
2014-06-10 03:59:55 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Extended module player library";
|
|
|
|
homepage = "http://xmp.sourceforge.net/";
|
|
|
|
longDescription = ''
|
|
|
|
Libxmp is a library that renders module files to PCM data. It supports
|
|
|
|
over 90 mainstream and obscure module formats including Protracker (MOD),
|
|
|
|
Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).
|
|
|
|
'';
|
|
|
|
license = licenses.lgpl21Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ iyzsong ];
|
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xmp/libxmp/${name}.tar.gz";
|
2016-02-27 15:18:06 +00:00
|
|
|
sha256 = "0r9qhps2a8nc850bislkgjzlamwl671r1sag1mi8k1a9gxq4n9kx";
|
2014-06-10 03:59:55 +00:00
|
|
|
};
|
|
|
|
}
|