mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
21 lines
527 B
Nix
21 lines
527 B
Nix
{ lib, stdenv, fetchurl, pkg-config, alsa-lib, 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 = [ alsa-lib libxmp ];
|
|
}
|