forked from mirrors/nixpkgs
add xmp 4.0.7
This commit is contained in:
parent
8951ca0715
commit
513165fc9a
20
pkgs/applications/audio/xmp/default.nix
Normal file
20
pkgs/applications/audio/xmp/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, pkgconfig, alsaLib, libxmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xmp-4.0.7";
|
||||
|
||||
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 = "0qgzzaxhshz5l7s21x89xb43pbbi0zap6a4lk4s7gjp1qca2agcw";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig alsaLib libxmp ];
|
||||
}
|
|
@ -9861,6 +9861,8 @@ let
|
|||
|
||||
xmove = callPackage ../applications/misc/xmove { };
|
||||
|
||||
xmp = callPackage ../applications/audio/xmp { };
|
||||
|
||||
xnee = callPackage ../tools/X11/xnee {
|
||||
# Work around "missing separator" error.
|
||||
stdenv = overrideInStdenv stdenv [ gnumake381 ];
|
||||
|
|
Loading…
Reference in a new issue