treewide: fix eval

This commit is contained in:
Matthew Bauer
2018-03-22 16:50:12 -05:00
parent 929f469ede
commit a59003d58f
2 changed files with 3 additions and 3 deletions
+2 -2
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