libmikmod and mikmod: update the former to 3.2.0, and add mikmod.
This commit is contained in:
parent
6ba310e908
commit
aa75c065d4
|
@ -0,0 +1,19 @@
|
|||
{ stdenv, fetchurl, libmikmod, ncurses }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mikmod-3.2.2";
|
||||
src = fetchurl {
|
||||
url = "http://mikmod.shlomifish.org/files/${name}.tar.gz";
|
||||
sha256 = "105vl1kyah588wpbpq6ck1wlr0jj55l2ps72q5i01gs9px8ncmp8";
|
||||
};
|
||||
|
||||
buildInputs = [ libmikmod ncurses ];
|
||||
|
||||
meta = {
|
||||
description = "Tracker music player for the terminal";
|
||||
homepage = http://mikmod.shlomifish.org/;
|
||||
license = "GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [ viric ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -1,9 +1,9 @@
|
|||
{ stdenv, fetchurl, texinfo }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libmikmod-3.1.12";
|
||||
name = "libmikmod-3.2.0";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/mikmod/${name}.tar.gz";
|
||||
sha256 = "0cpwpl0iqd5zsdwshw69arzlwp883bkmkx41wf3fzrh60dw2n6l9";
|
||||
url = "http://mikmod.shlomifish.org/files/${name}.tar.gz";
|
||||
sha256 = "07k6iyx6pyzisncgdkd071w2dhm3rx6l34hbja3wbc7rpf888k3k";
|
||||
};
|
||||
buildInputs = [ texinfo ];
|
||||
meta = {
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
A library for playing tracker music module files supporting many formats,
|
||||
including MOD, S3M, IT and XM.
|
||||
'';
|
||||
homepage = http://mikmod.raphnet.net/;
|
||||
homepage = http://mikmod.shlomifish.org/;
|
||||
license = "LGPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
|
|
|
@ -7077,6 +7077,8 @@ let
|
|||
icon = "${midori}/share/icons/hicolor/22x22/apps/midori.png";
|
||||
};
|
||||
|
||||
mikmod = callPackage ../applications/audio/mikmod { };
|
||||
|
||||
minicom = callPackage ../tools/misc/minicom { };
|
||||
|
||||
minidjvu = callPackage ../applications/graphics/minidjvu { };
|
||||
|
|
Loading…
Reference in New Issue