wt: 3.3.9 -> 3.3.10, 4.0.2 -> 4.0.3

This also removes the boost version pinning which became unnecessary
and uses the updated github username for the source repo.
This commit is contained in:
WilliButz 2018-04-18 23:48:11 +02:00 committed by Robin Gloster
parent ff3e3fb39d
commit 1c09a7cd4f

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, boost165, pkgconfig, doxygen, qt48Full, libharu { stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu
, pango, fcgi, firebird, mysql, postgresql, graphicsmagick, glew, openssl , pango, fcgi, firebird, mysql, postgresql, graphicsmagick, glew, openssl
, pcre , pcre
}: }:
@ -10,7 +10,7 @@ let
name = "wt-${version}"; name = "wt-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kdeforche"; owner = "emweb";
repo = "wt"; repo = "wt";
rev = version; rev = version;
inherit sha256; inherit sha256;
@ -20,7 +20,7 @@ let
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ buildInputs = [
cmake boost165 doxygen qt48Full libharu cmake boost doxygen qt48Full libharu
pango fcgi firebird mysql.connector-c postgresql graphicsmagick glew pango fcgi firebird mysql.connector-c postgresql graphicsmagick glew
openssl pcre openssl pcre
]; ];
@ -43,14 +43,12 @@ let
}; };
in { in {
wt3 = generic { wt3 = generic {
# with the next version update the version pinning of boost should be omitted version = "3.3.10";
version = "3.3.9"; sha256 = "1y25mhghgbgjgycpny0x4z95xn98q0wraab1c5gkwnay097bgwdy";
sha256 = "1mkflhvzzzxkc5yzvr6nk34j0ldpwxjxb6n7xml59h3j3px3ixjm";
}; };
wt4 = generic { wt4 = generic {
# with the next version update the version pinning of boost should be omitted version = "4.0.3";
version = "4.0.2"; sha256 = "01xch5dkpcanwhr515236wa9mdmnq2a2j13dn7smyhwzqgbpknsg";
sha256 = "0r729gjd1sy0pcmir2r7ga33mp5cr5b4gvf44852q65hw2577w1x";
}; };
} }