me
/
guix
Archived
1
0
Fork 0

distro: recutils: Comment out optional dependencies.

* distro/packages/recutils.scm (recutils): Comment out optional
  dependencies not packaged here.
master
Ludovic Courtès 2012-11-04 23:38:21 +01:00
parent 8d1939e4d0
commit d1acf1fd4a
1 changed files with 5 additions and 4 deletions

View File

@ -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"))))