summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/tsdl/default.nix
diff options
context:
space:
mode:
authorDavid Arroyo <david@aqwari.net>2020-04-26 02:56:46 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2020-04-28 09:25:18 +0200
commit9c3bb10d9a51d28ce849fd21af238c2608882564 (patch)
tree2499d294b79ce0d734f5bad797b5e0429bfe6de6 /pkgs/development/ocaml-modules/tsdl/default.nix
parent8d1d6454f38edd0f605b5bef23209d92503f0cb0 (diff)
downloadnixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar.gz
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar.bz2
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar.lz
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar.xz
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.tar.zst
nixpkgs-9c3bb10d9a51d28ce849fd21af238c2608882564.zip
ocamlPackages.tsdl: 0.9.4 -> 0.9.7
From the release notes:
* Require OCaml 4.03 and handle stdlib deprecations.
* Drop result depency.
* Drop ocb-stubblr dependency

The library has also been re-licensed from BSD3 to ISC.
Diffstat (limited to 'pkgs/development/ocaml-modules/tsdl/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/tsdl/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/tsdl/default.nix b/pkgs/development/ocaml-modules/tsdl/default.nix
index 1bac71d301f..f614c476140 100644
--- a/pkgs/development/ocaml-modules/tsdl/default.nix
+++ b/pkgs/development/ocaml-modules/tsdl/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, ctypes, result, SDL2, pkgconfig, ocb-stubblr }:
 
-if !stdenv.lib.versionAtLeast ocaml.version "4.02"
+if !stdenv.lib.versionAtLeast ocaml.version "4.03"
 then throw "tsdl is not available for OCaml ${ocaml.version}"
 else
 
 let
   pname = "tsdl";
-  version = "0.9.4";
+  version = "0.9.7";
   webpage = "https://erratique.ch/software/${pname}";
 in
 
@@ -15,11 +15,11 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "${webpage}/releases/${pname}-${version}.tbz";
-    sha256 = "13af37w2wybx8yzgjr5zz5l50402ldl614qiwphl1q69hig5mag2";
+    sha256 = "1zwv0ixkigh1gzk5n49rwvz2f2m62jdkkqg40j7dclg4gri7691f";
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ ocaml findlib ocamlbuild topkg result ocb-stubblr ];
+  buildInputs = [ ocaml findlib ocamlbuild topkg ];
   propagatedBuildInputs = [ SDL2 ctypes ];
 
   preConfigure = ''
@@ -36,7 +36,7 @@ stdenv.mkDerivation {
   meta = with stdenv.lib; {
     homepage = webpage;
     description = "Thin bindings to the cross-platform SDL library";
-    license = licenses.bsd3;
+    license = licenses.isc;
     platforms = ocaml.meta.platforms or [];
   };
 }