slang: update from 2.2.1 to 2.3.0
This commit is contained in:
parent
aa72e7a5dc
commit
3e6346ab85
@ -1,10 +1,10 @@
|
|||||||
{ stdenv, fetchurl, ncurses, pcre, libpng, zlib, readline }:
|
{ stdenv, fetchurl, ncurses, pcre, libpng, zlib, readline }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "slang-2.2.1";
|
name = "slang-2.3.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v2.2/slang-2.2.1.tar.bz2;
|
url = "ftp://ftp.fu-berlin.de/pub/unix/misc/slang/v2.2/${name}.tar.bz2";
|
||||||
sha256 = "1qgfg6i5lzmw8j9aqd8pgz3vnhn80giij9bpgm5r3gmna2h0rzfj";
|
sha256 = "0ab1j8pb3r84c5wqwadh3d5akwd5mwwv6fah58hxiq251w328lpr";
|
||||||
};
|
};
|
||||||
# Fix some wrong hardcoded paths
|
# Fix some wrong hardcoded paths
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
@ -14,4 +14,12 @@ stdenv.mkDerivation {
|
|||||||
'';
|
'';
|
||||||
configureFlags = "--with-png=${libpng} --with-z=${zlib} --with-pcre=${pcre} --with-readline=${readline}";
|
configureFlags = "--with-png=${libpng} --with-z=${zlib} --with-pcre=${pcre} --with-readline=${readline}";
|
||||||
buildInputs = [ncurses pcre libpng zlib readline];
|
buildInputs = [ncurses pcre libpng zlib readline];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A multi-platform programmer's library designed to allow a developer to create robust software";
|
||||||
|
homepage = http://www.jedsoft.org/slang/;
|
||||||
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
platform = stdenv.lib.platforms.unix;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user