Merge #16448: gnumake: optionally build with guile

Fixed up nested lists within the merge.
This commit is contained in:
Vladimír Čunát 2016-07-09 16:33:48 +02:00
commit 3b2627586d

View File

@ -1,4 +1,6 @@
{ stdenv, fetchurl }: { stdenv, fetchurl, guileSupport ? false, pkgconfig ? null , guile ? null }:
assert guileSupport -> ( pkgconfig != null && guile != null );
let let
version = "4.2"; version = "4.2";
@ -19,12 +21,16 @@ stdenv.mkDerivation {
./impure-dirs.patch ./impure-dirs.patch
]; ];
buildInputs = stdenv.lib.optionals guileSupport [ guile pkgconfig ];
configureFlags = stdenv.lib.optional guileSupport "--with-guile";
outputs = [ "out" "doc" ]; outputs = [ "out" "doc" ];
meta = { meta = with stdenv.lib; {
homepage = http://www.gnu.org/software/make/; homepage = http://www.gnu.org/software/make/;
description = "A tool to control the generation of non-source files from sources"; description = "A tool to control the generation of non-source files from sources";
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
longDescription = '' longDescription = ''
Make is a tool which controls the generation of executables and Make is a tool which controls the generation of executables and
@ -37,6 +43,7 @@ stdenv.mkDerivation {
to build and install the program. to build and install the program.
''; '';
platforms = stdenv.lib.platforms.all; platforms = platforms.all;
maintainers = [ maintainers.vrthra ];
}; };
} }