mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
libmikmod: New nixpkg.
svn path=/nixpkgs/trunk/; revision=21146
This commit is contained in:
parent
eb3b3e043d
commit
3e40cf1f64
20
pkgs/development/libraries/libmikmod/default.nix
Normal file
20
pkgs/development/libraries/libmikmod/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -4369,6 +4369,10 @@ let
|
||||
inherit fetchurl stdenv curl;
|
||||
};
|
||||
|
||||
libmikmod = import ../development/libraries/libmikmod {
|
||||
inherit stdenv fetchurl texinfo;
|
||||
};
|
||||
|
||||
libmilter = import ../development/libraries/libmilter {
|
||||
inherit fetchurl stdenv m4;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user