summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/sedlex/2.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-04-16 04:20:00 +0000
committerVincent Laporte <vbgl@users.noreply.github.com>2021-04-24 17:04:32 +0200
commit53a3fc28563c22f78768c3cc479206257183f5f8 (patch)
treeb568deb22fa4616b9c6334b5fe3998192b8474dd /pkgs/development/ocaml-modules/sedlex/2.nix
parentac0319febf7153f36e3330b52764e61f85d5605a (diff)
downloadnixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar.gz
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar.bz2
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar.lz
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar.xz
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.tar.zst
nixpkgs-53a3fc28563c22f78768c3cc479206257183f5f8.zip
ocamlPackages.sedlex_2: 2.2 -> 2.3
Diffstat (limited to 'pkgs/development/ocaml-modules/sedlex/2.nix')
-rw-r--r--pkgs/development/ocaml-modules/sedlex/2.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/ocaml-modules/sedlex/2.nix b/pkgs/development/ocaml-modules/sedlex/2.nix
index 927acc1819e..6db40dd9c7e 100644
--- a/pkgs/development/ocaml-modules/sedlex/2.nix
+++ b/pkgs/development/ocaml-modules/sedlex/2.nix
@@ -4,12 +4,11 @@
 , buildDunePackage
 , ocaml
 , gen
-, ppx_tools_versioned
-, ocaml-migrate-parsetree
+, ppxlib
 , uchar
 }:
 
-if lib.versionOlder ocaml.version "4.02.3"
+if lib.versionOlder ocaml.version "4.08"
 then throw "sedlex is not available for OCaml ${ocaml.version}"
 else
 
@@ -32,7 +31,7 @@ let
 in
 buildDunePackage rec {
   pname = "sedlex";
-  version = "2.2";
+  version = "2.3";
 
   useDune2 = true;
 
@@ -40,11 +39,11 @@ buildDunePackage rec {
     owner = "ocaml-community";
     repo = "sedlex";
     rev = "v${version}";
-    sha256 = "18dwl2is5j26z6b1c47b81wvcpxw44fasppdadsrs9vsw63rwcm3";
+    sha256 = "0iw3phlaqr27jdf857hmj5v5hdl0vngbb2h37p2ll18sw991fxar";
   };
 
   propagatedBuildInputs = [
-    gen uchar ocaml-migrate-parsetree ppx_tools_versioned
+    gen uchar ppxlib
   ];
 
   preBuild = ''
@@ -60,6 +59,7 @@ buildDunePackage rec {
 
   meta = {
     homepage = "https://github.com/ocaml-community/sedlex";
+    changelog = "https://github.com/ocaml-community/sedlex/raw/v${version}/CHANGES";
     description = "An OCaml lexer generator for Unicode";
     license = lib.licenses.mit;
     maintainers = [ lib.maintainers.marsam ];