nixpkgs/pkgs/applications/audio/xmp/default.nix

21 lines
548 B
Nix
Raw Normal View History

2014-06-10 04:03:13 +00:00
{ stdenv, fetchurl, pkgconfig, alsaLib, libxmp }:
stdenv.mkDerivation rec {
2015-04-29 06:22:28 +00:00
name = "xmp-4.0.10";
2014-06-10 04:03:13 +00:00
meta = with stdenv.lib; {
description = "Extended module player";
homepage = "http://xmp.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ iyzsong ];
};
src = fetchurl {
url = "mirror://sourceforge/xmp/xmp/${name}.tar.gz";
2015-04-29 06:22:28 +00:00
sha256 = "0gjylvvmq7ha0nhcjg56qfp0xxpsrcsj7y5r914svd5x1ppmzm5n";
2014-06-10 04:03:13 +00:00
};
buildInputs = [ pkgconfig alsaLib libxmp ];
}