Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff3e3fb39dea
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1c09a7cd4f2c
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 18, 2018

  1. 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.
    WilliButz authored and globin committed Apr 18, 2018
    Copy the full SHA
    1c09a7c View commit details
Showing with 7 additions and 9 deletions.
  1. +7 −9 pkgs/development/libraries/wt/default.nix
16 changes: 7 additions & 9 deletions pkgs/development/libraries/wt/default.nix
Original file line number Diff line number Diff line change
@@ -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
, pcre
}:
@@ -10,7 +10,7 @@ let
name = "wt-${version}";

src = fetchFromGitHub {
owner = "kdeforche";
owner = "emweb";
repo = "wt";
rev = version;
inherit sha256;
@@ -20,7 +20,7 @@ let

nativeBuildInputs = [ pkgconfig ];
buildInputs = [
cmake boost165 doxygen qt48Full libharu
cmake boost doxygen qt48Full libharu
pango fcgi firebird mysql.connector-c postgresql graphicsmagick glew
openssl pcre
];
@@ -43,14 +43,12 @@ let
};
in {
wt3 = generic {
# with the next version update the version pinning of boost should be omitted
version = "3.3.9";
sha256 = "1mkflhvzzzxkc5yzvr6nk34j0ldpwxjxb6n7xml59h3j3px3ixjm";
version = "3.3.10";
sha256 = "1y25mhghgbgjgycpny0x4z95xn98q0wraab1c5gkwnay097bgwdy";
};

wt4 = generic {
# with the next version update the version pinning of boost should be omitted
version = "4.0.2";
sha256 = "0r729gjd1sy0pcmir2r7ga33mp5cr5b4gvf44852q65hw2577w1x";
version = "4.0.3";
sha256 = "01xch5dkpcanwhr515236wa9mdmnq2a2j13dn7smyhwzqgbpknsg";
};
}