libmikmod: New nixpkg.

svn path=/nixpkgs/trunk/; revision=21146
This commit is contained in:
Alexander Tsamutali 2010-04-18 18:57:35 +00:00
parent eb3b3e043d
commit 3e40cf1f64
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, texinfo }:
stdenv.mkDerivation rec {
name = "libmikmod-3.1.12";
src = fetchurl {
url = "mirror://sourceforge/mikmod/${name}.tar.gz";
sha256 = "0cpwpl0iqd5zsdwshw69arzlwp883bkmkx41wf3fzrh60dw2n6l9";
};
buildInputs = [ texinfo ];
meta = {
description = "A library for playing tracker music module files";
longDescription = ''
A library for playing tracker music module files supporting many formats,
including MOD, S3M, IT and XM.
'';
homepage = http://mikmod.raphnet.net/;
license = "LGPLv2+";
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
};
}

View File

@ -4369,6 +4369,10 @@ let
inherit fetchurl stdenv curl; inherit fetchurl stdenv curl;
}; };
libmikmod = import ../development/libraries/libmikmod {
inherit stdenv fetchurl texinfo;
};
libmilter = import ../development/libraries/libmilter { libmilter = import ../development/libraries/libmilter {
inherit fetchurl stdenv m4; inherit fetchurl stdenv m4;
}; };