From 156b5010ff80265ef3ebe538c7b90b909838945f Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 15 Jan 2013 23:00:46 +0100 Subject: distro: recutils: Add 3 optional dependencies. * distro/packages/recutils.scm (recutils): Add Emacs, Check, and bc as dependencies. --- distro/packages/recutils.scm | 13 ++++++++----- 1 file 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 +;;; Copyright © 2012, 2013 Ludovic Courtès ;;; ;;; 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")))) -- cgit v1.2.3