diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-15 23:00:46 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-15 23:00:46 +0100 |
commit | 156b5010ff80265ef3ebe538c7b90b909838945f (patch) | |
tree | 4b02acff86056e7d6b6fd45f1118d7817e8d6ed6 /distro/packages | |
parent | 9282e25962c4830622828fb8ebdc79a96d6486ca (diff) | |
download | guix-156b5010ff80265ef3ebe538c7b90b909838945f.tar.gz guix-156b5010ff80265ef3ebe538c7b90b909838945f.zip |
distro: recutils: Add 3 optional dependencies.
* distro/packages/recutils.scm (recutils): Add Emacs, Check, and bc as
dependencies.
Diffstat (limited to 'distro/packages')
-rw-r--r-- | distro/packages/recutils.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/distro/packages/recutils.scm b/distro/packages/recutils.scm index 72f56917d5..484dd232bb 100644 --- a/distro/packages/recutils.scm +++ b/distro/packages/recutils.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -22,7 +22,10 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) - #:use-module (guix build-system gnu)) + #:use-module (guix build-system gnu) + #:use-module (distro packages emacs) + #:use-module (distro packages check) + #:use-module (distro packages algebra)) (define-public recutils (package @@ -38,9 +41,9 @@ (build-system gnu-build-system) (inputs `(;; TODO: Enable optional deps when they're packaged. ;; ("curl" ,(nixpkgs-derivation "curl")) - ;; ("emacs" ,(nixpkgs-derivation "emacs")) - ;; ("check" ,(nixpkgs-derivation "check")) - ;; ("bc" ,(nixpkgs-derivation "bc")) + ("emacs" ,emacs) + ("check" ,check) + ("bc" ,bc) ("patch/gets" ,(search-patch "diffutils-gets-undeclared.patch")))) (arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets")))) |