treewide: fix eval

This commit is contained in:
Matthew Bauer 2018-03-14 15:29:44 -05:00
parent 929f469ede
commit a59003d58f
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, glib, pkgconfig, intltool, libxslt, docbook_xsl, gtk-doc
, libgcrypt, gobjectIntrospection, vala_0_38, gnome3 }:
, libgcrypt, gobjectIntrospection, vala_0_38, gnome3, libintl }:
let
pname = "libsecret";
version = "0.18.5";

View File

@ -16,8 +16,8 @@ in
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ cmake ] ++
(if backend == "darwin" then [darwin.apple_sdk.frameworks.Cocoa]
else if backend == "unix" then [gtk3])
else null;
else if backend == "unix" then [gtk3]
else null);
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
sed -i 's/set(CMAKE_OSX_DEPLOYMENT_TARGET "10.8")//' ./CMakeLists.txt