gnumake: Allow guile extension language as an optional feature

This commit is contained in:
Rahul Gopinath 2016-06-23 01:05:25 -07:00
parent 21f9180d49
commit 586a9c0d9c

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.optional 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 ];
}; };
} }