diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-20 03:01:02 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-21 03:09:43 +0100 |
commit | 786886d1f575773e8c5a58e9802e805e20871a8c (patch) | |
tree | b68909f9112c7f92e4e6ba1c7391220225fc8919 /gnu | |
parent | 2d1e064694ae48a90eedcde8da12a51ab4596a68 (diff) | |
download | guix-786886d1f575773e8c5a58e9802e805e20871a8c.tar.gz guix-786886d1f575773e8c5a58e9802e805e20871a8c.zip |
gnu: ocaml-tsdl: Update to 0.9.7.
* gnu/packages/ocaml.scm (ocaml-tsdl): Update to 0.9.7.
[native-inputs]: Remove ocaml-ocb-stubblr.
[inputs]: Remove ocaml-result.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index fae92bbf1c..92b28e0148 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -3340,7 +3340,7 @@ OCaml projects that contain C stubs.") (define-public ocaml-tsdl (package (name "ocaml-tsdl") - (version "0.9.6") + (version "0.9.7") (home-page "https://erratique.ch/software/tsdl") (source (origin (method url-fetch) @@ -3349,7 +3349,7 @@ OCaml projects that contain C stubs.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "00krjhmnchsnz33h9zhh0v69xbvi86l0xf0dvy7iivylb7f7x3n4")))) + "1zwv0ixkigh1gzk5n49rwvz2f2m62jdkkqg40j7dclg4gri7691f")))) (build-system ocaml-build-system) (arguments `(#:build-flags '("build") @@ -3360,12 +3360,10 @@ OCaml projects that contain C stubs.") (native-inputs `(("ocamlbuild" ,ocamlbuild) ("ocaml-astring" ,ocaml-astring) - ("ocaml-ocb-stubblr" ,ocaml-ocb-stubblr) ("opam" ,opam) ("pkg-config" ,pkg-config))) (inputs `(("topkg" ,ocaml-topkg) - ("result" ,ocaml-result) ("sdl2" ,sdl2) ("integers" ,ocaml-integers) ("ctypes" ,ocaml-ctypes))) |