summary refs log tree commit diff
path: root/pkgs/applications/audio/xmp/default.nix
blob: b6accf1993a7f5f9089e286c13ddcf8ac98c8694 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, pkg-config, alsaLib, libxmp }:

stdenv.mkDerivation rec {
  name = "xmp-4.1.0";

  meta = with 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";
    sha256 = "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ alsaLib libxmp ];
}