pkgs.darktable: 1.6.9 -> 2.0.0

See http://www.darktable.org/2015/12/darktable-2-0-released/

changes by @globin: added wrapGAppsHook and adwaita-icon-theme

Signed-off-by: Robin Gloster <mail@glob.in>
This commit is contained in:
Lancelot SIX
2016-01-09 01:24:28 +01:00
committed by Robin Gloster
parent cbf2286506
commit c5379e7da8
3 changed files with 16 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake }:
{ stdenv, fetchurl, cmake, shared ? false }:
stdenv.mkDerivation rec {
name = "pugixml-${version}";
@@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
sourceRoot = "${name}/scripts";
cmakeFlags = [ "-DBUILD_SHARED_LIBS=${if shared then "ON" else "OFF"}" ];
preConfigure = ''
# Enable long long support (required for filezilla)
sed -ire '/PUGIXML_HAS_LONG_LONG/ s/^\/\///' ../src/pugiconfig.hpp