aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosselin Poiret <dev@jpoiret.xyz>2024-09-11 11:53:49 +0200
committerJosselin Poiret <dev@jpoiret.xyz>2024-10-12 11:02:50 +0200
commitb7a4ce82ec246a17d7f53d6fba34b14863858ea0 (patch)
tree3b1ee451a6365b38eda0633c5e0944ea1381ae3b
parentb8fd792ea267cb920da0651074a533d8abf00488 (diff)
downloadguix-b7a4ce82ec246a17d7f53d6fba34b14863858ea0.tar.gz
guix-b7a4ce82ec246a17d7f53d6fba34b14863858ea0.zip
gnu: ocaml-cairo2: Only build cairo2 package, remove unneeded deps.
* gnu/packages/ocaml.scm (ocaml-cairo2): Only build cairo2 and not other ocaml packages alongside. Remove unneeded dependencies gtk+-2 and lablgtk. Change-Id: I46a026cf0ed26789a590a889d2db47f32b9a97c8
-rw-r--r--gnu/packages/ocaml.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 6ba5f5e374..804c51c5b0 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -8404,10 +8404,10 @@ convenience functions for vectors and matrices.")
(base32
"06ag9b88ihhr7yd3s9l0ac7ysig02fmlmsswybbsvz71ni0mb105"))))
(build-system dune-build-system)
+ (arguments
+ (list #:package "cairo2"))
(inputs
- `(("cairo" ,cairo)
- ("gtk+-2" ,gtk+-2)
- ("lablgtk" ,lablgtk)))
+ `(("cairo" ,cairo)))
(native-inputs
(list pkg-config))
(home-page "https://github.com/Chris00/ocaml-cairo")