nixpkgs/pkgs/development/libraries/libxmp/default.nix

24 lines
730 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2014-06-10 03:59:55 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libxmp";
version = "4.5.0";
2014-06-10 03:59:55 +00:00
meta = with lib; {
2014-06-10 03:59:55 +00:00
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;
2021-03-12 05:20:22 +00:00
platforms = platforms.all;
2014-06-10 03:59:55 +00:00
};
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "mirror://sourceforge/xmp/libxmp/${pname}-${version}.tar.gz";
2021-06-16 14:24:02 +00:00
sha256 = "sha256-eEfSYhEtFOhEL0TlrG7Z3bylTCUShHILVjyFKzHybnU=";
2014-06-10 03:59:55 +00:00
};
}