diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-02 12:01:45 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-07-02 13:19:30 +0200 |
commit | 6c59eb1da2eec29f730e82f31218f4f3e1b3c6a0 (patch) | |
tree | 714967dcb485aeb6912a49fcbffe270acbd583e4 | |
parent | 214874e820d08871673006a98220de51a3593feb (diff) | |
download | guix-6c59eb1da2eec29f730e82f31218f4f3e1b3c6a0.tar.gz |
Revert "gnu: guix-minimal: Remove as failing and unused."
This reverts commit 044cffdf34c506d2f9f1fbbc07462f29d3edaf54.
-rw-r--r-- | gnu/packages/package-management.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index ac2842c810..261a55fa14 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -478,6 +478,23 @@ the Nix package manager.") (define-public guile3.0-guix (deprecated-package "guile3.0-guix" guix)) +(define-public guix-minimal + ;; A version of Guix which is built with the minimal set of dependencies, as + ;; outlined in the README "Requirements" section. Intended as a CI job, so + ;; marked as hidden. + (hidden-package + (package + (inherit guix) + (name "guix-minimal") + (native-inputs + (fold alist-delete + (package-native-inputs guix) + '("guile-ssh"))) + (propagated-inputs + (fold alist-delete + (package-propagated-inputs guix) + '("guile-ssh")))))) + (define (source-file? file stat) "Return true if FILE is likely a source file, false if it is a typical generated file." |