1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge branch 'staging'

Hydra seems very good.
This commit is contained in:
Vladimír Čunát 2017-10-20 23:46:03 +02:00
commit bd8daca057
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
3 changed files with 20 additions and 11 deletions

View file

@ -1,14 +1,15 @@
{stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu,
pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl,
pcre }:
{ stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu
, pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl
, pcre
}:
stdenv.mkDerivation rec {
name = "wt";
name = "wt-${version}";
version = "4.0.0";
src = fetchFromGitHub {
owner = "kdeforche";
repo = name;
repo = "wt";
rev = version;
sha256 = "1451xxvnx6mlvxg0jxlr1mfv5v18h2214kijk5kacilqashfc43i";
};
@ -16,9 +17,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake boost doxygen qt48Full libharu
pango fcgi firebird libmysql postgresql graphicsmagick glew
openssl pcre ];
buildInputs = [
cmake boost doxygen qt48Full libharu
pango fcgi firebird libmysql postgresql graphicsmagick glew
openssl pcre
];
cmakeFlags = [
"-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
@ -31,7 +34,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = https://www.webtoolkit.eu/wt;
description = "C++ library for developing web applications";
platforms = platforms.linux ;
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = [ maintainers.juliendehos ];
};

View file

@ -11425,7 +11425,9 @@ with pkgs;
charybdis = callPackage ../servers/irc/charybdis {};
clickhouse = callPackage ../servers/clickhouse { };
clickhouse = callPackage ../servers/clickhouse {
boost = boost160;
};
couchdb = callPackage ../servers/http/couchdb {
spidermonkey = spidermonkey_1_8_5;
@ -17451,6 +17453,7 @@ with pkgs;
zanshin = libsForQt5.callPackage ../applications/office/zanshin {
inherit (kdeApplications) akonadi-calendar akonadi-notes akonadi-search kidentitymanagement kontactinterface kldap;
inherit (kdeFrameworks) krunner kwallet;
boost = boost160;
};
zathura = callPackage ../applications/misc/zathura {

View file

@ -95,7 +95,10 @@ in {
setuptools = callPackage ../development/python-modules/setuptools { };
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { pythonPackages = self; };
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit {
pythonPackages = self;
boost = pkgs.boost160;
};
acoustics = callPackage ../development/python-modules/acoustics { };