diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-11-04 23:38:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-11-05 00:28:41 +0100 |
commit | d1acf1fd4a3af2ec57116594505468350aab73c8 (patch) | |
tree | 6fe8789dd2c556d9bbbd9b58787cdf3595a8af11 /distro | |
parent | 8d1939e4d0fbd951cea81201202b4988027caac7 (diff) | |
download | patches-d1acf1fd4a3af2ec57116594505468350aab73c8.tar patches-d1acf1fd4a3af2ec57116594505468350aab73c8.tar.gz |
distro: recutils: Comment out optional dependencies.
* distro/packages/recutils.scm (recutils): Comment out optional
dependencies not packaged here.
Diffstat (limited to 'distro')
-rw-r--r-- | distro/packages/recutils.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/distro/packages/recutils.scm b/distro/packages/recutils.scm index 6221ee07c9..c3b74b6085 100644 --- a/distro/packages/recutils.scm +++ b/distro/packages/recutils.scm @@ -35,10 +35,11 @@ (base32 "1v2xzwwwhc5j5kmvg4sv6baxjpsfqh8ln7ilv4mgb1408rs7xmky")))) (build-system gnu-build-system) - (inputs `(("curl" ,(nixpkgs-derivation "curl")) - ("emacs" ,(nixpkgs-derivation "emacs")) - ("check" ,(nixpkgs-derivation "check")) - ("bc" ,(nixpkgs-derivation "bc")) + (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")) ("patch/gets" ,(search-patch "diffutils-gets-undeclared.patch")))) (arguments `(#:patches (list (assoc-ref %build-inputs "patch/gets")))) |