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

21 lines
525 B
Nix
Raw Normal View History

2014-06-10 04:03:13 +00:00
{ stdenv, fetchurl, pkgconfig, alsaLib, libxmp }:
stdenv.mkDerivation rec {
2018-01-28 14:21:53 +00:00
name = "xmp-4.1.0";
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;
};
src = fetchurl {
url = "mirror://sourceforge/xmp/xmp/${name}.tar.gz";
2018-01-28 14:21:53 +00:00
sha256 = "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x";
2014-06-10 04:03:13 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ alsaLib libxmp ];
2014-06-10 04:03:13 +00:00
}