distro: recutils: Add 3 optional dependencies.

* distro/packages/recutils.scm (recutils): Add Emacs, Check, and bc as
  dependencies.
This commit is contained in:
Ludovic Courtès 2013-01-15 23:00:46 +01:00
parent 9282e25962
commit 156b5010ff
1 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; 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. ;;; This file is part of GNU Guix.
;;; ;;;
@ -22,7 +22,10 @@
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix utils) #: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 (define-public recutils
(package (package
@ -38,9 +41,9 @@
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(;; TODO: Enable optional deps when they're packaged. (inputs `(;; TODO: Enable optional deps when they're packaged.
;; ("curl" ,(nixpkgs-derivation "curl")) ;; ("curl" ,(nixpkgs-derivation "curl"))
;; ("emacs" ,(nixpkgs-derivation "emacs")) ("emacs" ,emacs)
;; ("check" ,(nixpkgs-derivation "check")) ("check" ,check)
;; ("bc" ,(nixpkgs-derivation "bc")) ("bc" ,bc)
("patch/gets" ("patch/gets"
,(search-patch "diffutils-gets-undeclared.patch")))) ,(search-patch "diffutils-gets-undeclared.patch"))))
(arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets")))) (arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets"))))