mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
24 lines
756 B
Nix
24 lines
756 B
Nix
|
{ stdenv, fetchurl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "libxmp-4.2.7";
|
||
|
|
||
|
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";
|
||
|
sha256 = "1isv8498869w8wc18lagi1p40z4blx684r21j9cligkfyrmri536";
|
||
|
};
|
||
|
}
|