2012-02-01 23:33:35 +01:00
|
|
|
{ stdenv, fetchurl
|
2015-05-31 18:33:12 +02:00
|
|
|
, gpm, openssl, pkgconfig, libev # Misc.
|
|
|
|
, libpng, libjpeg, libtiff, librsvg # graphic formats
|
2012-02-01 23:33:35 +01:00
|
|
|
, bzip2, zlib, xz # Transfer encodings
|
|
|
|
, enableFB ? true
|
|
|
|
, enableDirectFB ? false, directfb
|
|
|
|
, enableX11 ? true, libX11, libXt, libXau # GUI support
|
|
|
|
}:
|
2009-10-24 17:39:54 +02:00
|
|
|
|
2012-02-01 23:33:35 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-14 20:26:08 +02:00
|
|
|
version = "2.21";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "links2";
|
2012-02-01 23:33:35 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "${meta.homepage}/download/links-${version}.tar.bz2";
|
2020-08-14 20:26:08 +02:00
|
|
|
sha256 = "0qqdcghsdqm7l6kyi0k752ws3ak5crw85pqkcb11wy67j62yspi8";
|
2012-02-01 23:33:35 +01:00
|
|
|
};
|
|
|
|
|
2017-03-14 06:40:21 +01:00
|
|
|
buildInputs = with stdenv.lib;
|
|
|
|
[ libev librsvg libpng libjpeg libtiff openssl xz bzip2 zlib ]
|
|
|
|
++ optionals stdenv.isLinux [ gpm ]
|
|
|
|
++ optionals enableX11 [ libX11 libXau libXt ]
|
|
|
|
++ optional enableDirectFB [ directfb ];
|
2012-02-01 23:33:35 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig bzip2 ];
|
2012-02-01 23:33:35 +01:00
|
|
|
|
|
|
|
configureFlags = [ "--with-ssl" ]
|
|
|
|
++ stdenv.lib.optional (enableX11 || enableFB || enableDirectFB) "--enable-graphics"
|
|
|
|
++ stdenv.lib.optional enableX11 "--with-x"
|
|
|
|
++ stdenv.lib.optional enableFB "--with-fb"
|
|
|
|
++ stdenv.lib.optional enableDirectFB "--with-directfb";
|
|
|
|
|
2017-03-05 02:52:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://links.twibright.com/";
|
2009-10-24 17:39:54 +02:00
|
|
|
description = "A small browser with some graphics support";
|
2018-07-22 21:50:19 +02:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2020-06-27 00:14:33 +02:00
|
|
|
license = licenses.gpl2Plus;
|
2017-03-14 06:40:21 +01:00
|
|
|
platforms = platforms.unix;
|
2009-10-24 17:39:54 +02:00
|
|
|
};
|
|
|
|
}
|