forked from mirrors/nixpkgs
treewide: fix eval
This commit is contained in:
parent
929f469ede
commit
a59003d58f
|
@ -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";
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue