summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/psq
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-03-11 14:42:13 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-03-11 14:42:13 +0100
commit94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509 (patch)
tree3ef6f04092c8bca3d82bffad4196b1c8ea254ee5 /pkgs/development/ocaml-modules/psq
parenta4c00abde4fe22878ae41afff1958bdae2dd7343 (diff)
downloadnixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar.gz
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar.bz2
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar.lz
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar.xz
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.tar.zst
nixpkgs-94f176a4e3ae6190cb9ff9c25a1fb272fa6ee509.zip
ocamlPackages.psq: 0.2.0 → 0.2.1
Diffstat (limited to 'pkgs/development/ocaml-modules/psq')
-rw-r--r--pkgs/development/ocaml-modules/psq/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/psq/default.nix b/pkgs/development/ocaml-modules/psq/default.nix
index ea9a0615b41..f1c8ab92af4 100644
--- a/pkgs/development/ocaml-modules/psq/default.nix
+++ b/pkgs/development/ocaml-modules/psq/default.nix
@@ -1,15 +1,15 @@
 { lib, buildDunePackage, ocaml, fetchurl, seq, qcheck-alcotest }:
 
 buildDunePackage rec {
-  minimumOCamlVersion = "4.03";
+  minimalOCamlVersion = "4.03";
   pname = "psq";
-  version = "0.2.0";
+  version = "0.2.1";
 
-  useDune2 = true;
+  duneVersion = "3";
 
   src = fetchurl {
-    url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-v${version}.tbz";
-    sha256 = "1j4lqkq17rskhgcrpgr4n1m1a2b1x35mlxj6f9g05rhpmgvgvknk";
+    url = "https://github.com/pqwy/psq/releases/download/v${version}/psq-${version}.tbz";
+    hash = "sha256-QgBfUz6r50sXme4yuJBWVM1moivtSvK9Jmso2EYs00Q=";
   };
 
   propagatedBuildInputs = [ seq ];