mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
distro: recutils: Add 3 optional dependencies.
* distro/packages/recutils.scm (recutils): Add Emacs, Check, and bc as dependencies.
This commit is contained in:
parent
9282e25962
commit
156b5010ff
1 changed files with 8 additions and 5 deletions
|
@ -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 @@ (define-module (distro packages recutils)
|
|||
#: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 @@ (define-public recutils
|
|||
(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"))))
|
||||
|
|
Loading…
Reference in a new issue