17aefb1460
They're still enabled by default, but now can be disabled. Python has not been made optional due to the additional complexity of: - python2 vs python3 - pync support on Darwin Making Python support optional should be revisited at another time.
69 lines
2.1 KiB
Nix
69 lines
2.1 KiB
Nix
{ stdenv, fetchurl, ncurses, openssl, aspell, gnutls
|
|
, zlib, curl , pkgconfig, libgcrypt
|
|
, cmake, makeWrapper, libobjc, libiconv
|
|
, guileSupport ? true, guile
|
|
, luaSupport ? true, lua5
|
|
, perlSupport ? true, perl
|
|
, pythonPackages
|
|
, rubySupport ? true, ruby
|
|
, tclSupport ? true, tcl
|
|
, extraBuildInputs ? [] }:
|
|
|
|
assert guileSupport -> guile != null;
|
|
assert luaSupport -> lua5 != null;
|
|
assert perlSupport -> perl != null;
|
|
assert rubySupport -> ruby != null;
|
|
assert tclSupport -> tcl != null;
|
|
|
|
let
|
|
inherit (pythonPackages) python pycrypto pync;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4";
|
|
name = "weechat-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://weechat.org/files/src/weechat-${version}.tar.bz2";
|
|
sha256 = "1m6xq6izcac5186xvvmm8znfjzrg9hq42p69jabdvv7cri4rjvg0";
|
|
};
|
|
|
|
cmakeFlags = with stdenv.lib; []
|
|
++ optional stdenv.isDarwin "-DICONV_LIBRARY=${libiconv}/lib/libiconv.dylib"
|
|
++ optional (!guileSupport) "-DENABLE_GUILE=OFF"
|
|
++ optional (!luaSupport) "-DENABLE_LUA=OFF"
|
|
++ optional (!perlSupport) "-DENABLE_PERL=OFF"
|
|
++ optional (!rubySupport) "-DENABLE_RUBY=OFF"
|
|
++ optional (!tclSupport) "-DENABLE_TCL=OFF"
|
|
;
|
|
|
|
buildInputs = with stdenv.lib; [
|
|
ncurses python openssl aspell gnutls zlib curl pkgconfig
|
|
libgcrypt pycrypto makeWrapper
|
|
cmake
|
|
]
|
|
++ optionals stdenv.isDarwin [ pync libobjc ]
|
|
++ optional guileSupport guile
|
|
++ optional luaSupport lua5
|
|
++ optional perlSupport perl
|
|
++ optional rubySupport ruby
|
|
++ optional tclSupport tcl
|
|
++ extraBuildInputs;
|
|
|
|
NIX_CFLAGS_COMPILE = "-I${python}/include/${python.libPrefix} -DCA_FILE=/etc/ssl/certs/ca-certificates.crt";
|
|
|
|
postInstall = ''
|
|
NIX_PYTHONPATH="$out/lib/${python.libPrefix}/site-packages"
|
|
wrapProgram "$out/bin/weechat" \
|
|
--prefix PYTHONPATH : "$PYTHONPATH" \
|
|
--prefix PYTHONPATH : "$NIX_PYTHONPATH"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.weechat.org/;
|
|
description = "A fast, light and extensible chat client";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 garbas the-kenny ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|