From be13fbfa83dd3e3c7a7a3d09f9c520940eb350d4 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 10 Sep 2012 22:47:10 +0200 Subject: Add (guix build-system trivial). * guix/build-system/trivial.scm: New file. * Makefile.am (MODULES): Add it. * tests/packages.scm ("trivial"): New test. * guix/packages.scm (package-derivation): Allow SOURCE to be #f. --- guix/packages.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guix/packages.scm') diff --git a/guix/packages.scm b/guix/packages.scm index 1394f980f7..ea5302e60b 100644 --- a/guix/packages.scm +++ b/guix/packages.scm @@ -261,7 +261,7 @@ (define* (package-derivation store package (cache package system (apply builder store (package-full-name package) - (package-source-derivation store source) + (and source (package-source-derivation store source)) inputs #:outputs outputs #:system system (if (procedure? args) -- cgit v1.2.3