Merge pull request #23881 from nicknovitski/links-darwin
links2: build on all unix platforms
This commit is contained in:
commit
5c57cc2ed8
@ -16,10 +16,11 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1f24y83wa1vzzjq5kp857gjqdpnmf8pb29yw7fam0m8wxxw0c3gp";
|
sha256 = "1f24y83wa1vzzjq5kp857gjqdpnmf8pb29yw7fam0m8wxxw0c3gp";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = with stdenv.lib;
|
||||||
[ libev librsvg libpng libjpeg libtiff gpm openssl xz bzip2 zlib ]
|
[ libev librsvg libpng libjpeg libtiff openssl xz bzip2 zlib ]
|
||||||
++ stdenv.lib.optionals enableX11 [ libX11 libXau libXt ]
|
++ optionals stdenv.isLinux [ gpm ]
|
||||||
++ stdenv.lib.optional enableDirectFB [ directfb ];
|
++ optionals enableX11 [ libX11 libXau libXt ]
|
||||||
|
++ optional enableDirectFB [ directfb ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig bzip2 ];
|
nativeBuildInputs = [ pkgconfig bzip2 ];
|
||||||
|
|
||||||
@ -39,6 +40,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = http://links.twibright.com/;
|
homepage = http://links.twibright.com/;
|
||||||
description = "A small browser with some graphics support";
|
description = "A small browser with some graphics support";
|
||||||
maintainers = with maintainers; [ raskin urkud viric ];
|
maintainers = with maintainers; [ raskin urkud viric ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user