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

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

  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";
    sha256 = "0gjylvvmq7ha0nhcjg56qfp0xxpsrcsj7y5r914svd5x1ppmzm5n";
  };

  buildInputs = [ pkgconfig alsaLib libxmp ];
}