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

21 lines
525 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, alsaLib, libxmp }:
2014-06-10 06:03:13 +02:00
stdenv.mkDerivation rec {
2018-01-28 15:21:53 +01:00
name = "xmp-4.1.0";
2014-06-10 06:03:13 +02:00
meta = with lib; {
2014-06-10 06:03:13 +02:00
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 15:21:53 +01:00
sha256 = "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x";
2014-06-10 06:03:13 +02:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsaLib libxmp ];
2014-06-10 06:03:13 +02:00
}