Merge pull request #8150 from ts468/upstream.calamares

Add Calamares: A distribution independent installer framework.
This commit is contained in:
Peter Simons
2015-06-08 11:48:41 +02:00
3 changed files with 45 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, boost }:
{ stdenv, fetchurl, cmake, boost, makePIC ? false }:
stdenv.mkDerivation {
name = "libyaml-cpp-0.5.1";
@@ -10,6 +10,8 @@ stdenv.mkDerivation {
buildInputs = [ cmake boost ];
cmakeFlags = stdenv.lib.optionals makePIC [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" ];
meta = with stdenv.lib; {
homepage = http://code.google.com/p/yaml-cpp/;
description = "A YAML parser and emitter for C++";