Merge branch 'staging'

Hydra seems very good.

+20 -11
+12 -9
pkgs/development/libraries/wt/default.nix
··· 1 - {stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu, 2 - pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl, 3 - pcre }: 4 5 stdenv.mkDerivation rec { 6 - name = "wt"; 7 version = "4.0.0"; 8 9 src = fetchFromGitHub { 10 owner = "kdeforche"; 11 - repo = name; 12 rev = version; 13 sha256 = "1451xxvnx6mlvxg0jxlr1mfv5v18h2214kijk5kacilqashfc43i"; 14 }; ··· 16 enableParallelBuilding = true; 17 18 nativeBuildInputs = [ pkgconfig ]; 19 - buildInputs = [ cmake boost doxygen qt48Full libharu 20 - pango fcgi firebird libmysql postgresql graphicsmagick glew 21 - openssl pcre ]; 22 23 cmakeFlags = [ 24 "-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick" ··· 31 meta = with stdenv.lib; { 32 homepage = https://www.webtoolkit.eu/wt; 33 description = "C++ library for developing web applications"; 34 - platforms = platforms.linux ; 35 license = licenses.gpl2; 36 maintainers = [ maintainers.juliendehos ]; 37 };
··· 1 + { stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu 2 + , pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl 3 + , pcre 4 + }: 5 6 stdenv.mkDerivation rec { 7 + name = "wt-${version}"; 8 version = "4.0.0"; 9 10 src = fetchFromGitHub { 11 owner = "kdeforche"; 12 + repo = "wt"; 13 rev = version; 14 sha256 = "1451xxvnx6mlvxg0jxlr1mfv5v18h2214kijk5kacilqashfc43i"; 15 }; ··· 17 enableParallelBuilding = true; 18 19 nativeBuildInputs = [ pkgconfig ]; 20 + buildInputs = [ 21 + cmake boost doxygen qt48Full libharu 22 + pango fcgi firebird libmysql postgresql graphicsmagick glew 23 + openssl pcre 24 + ]; 25 26 cmakeFlags = [ 27 "-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick" ··· 34 meta = with stdenv.lib; { 35 homepage = https://www.webtoolkit.eu/wt; 36 description = "C++ library for developing web applications"; 37 + platforms = platforms.linux; 38 license = licenses.gpl2; 39 maintainers = [ maintainers.juliendehos ]; 40 };
+4 -1
pkgs/top-level/all-packages.nix
··· 11425 11426 charybdis = callPackage ../servers/irc/charybdis {}; 11427 11428 - clickhouse = callPackage ../servers/clickhouse { }; 11429 11430 couchdb = callPackage ../servers/http/couchdb { 11431 spidermonkey = spidermonkey_1_8_5; ··· 17451 zanshin = libsForQt5.callPackage ../applications/office/zanshin { 17452 inherit (kdeApplications) akonadi-calendar akonadi-notes akonadi-search kidentitymanagement kontactinterface kldap; 17453 inherit (kdeFrameworks) krunner kwallet; 17454 }; 17455 17456 zathura = callPackage ../applications/misc/zathura {
··· 11425 11426 charybdis = callPackage ../servers/irc/charybdis {}; 11427 11428 + clickhouse = callPackage ../servers/clickhouse { 11429 + boost = boost160; 11430 + }; 11431 11432 couchdb = callPackage ../servers/http/couchdb { 11433 spidermonkey = spidermonkey_1_8_5; ··· 17453 zanshin = libsForQt5.callPackage ../applications/office/zanshin { 17454 inherit (kdeApplications) akonadi-calendar akonadi-notes akonadi-search kidentitymanagement kontactinterface kldap; 17455 inherit (kdeFrameworks) krunner kwallet; 17456 + boost = boost160; 17457 }; 17458 17459 zathura = callPackage ../applications/misc/zathura {
+4 -1
pkgs/top-level/python-packages.nix
··· 95 96 setuptools = callPackage ../development/python-modules/setuptools { }; 97 98 - vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { pythonPackages = self; }; 99 100 acoustics = callPackage ../development/python-modules/acoustics { }; 101
··· 95 96 setuptools = callPackage ../development/python-modules/setuptools { }; 97 98 + vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { 99 + pythonPackages = self; 100 + boost = pkgs.boost160; 101 + }; 102 103 acoustics = callPackage ../development/python-modules/acoustics { }; 104