about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2023-06-23 08:43:47 +0200
committerVincent Laporte <Vincent.Laporte@gmail.com>2023-06-23 09:49:30 +0200
commite4ba29c31d6a15fc51e6d64a957edb00e9ca655d (patch)
treefddfb0980dca2c4175bf9a6ada7df144dfa76003 /pkgs/development/ocaml-modules
parent5183c8d21d95fa6c9e9c7ba97bd68066e8585209 (diff)
downloadnixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar.gz
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar.bz2
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar.lz
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar.xz
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.tar.zst
nixlib-e4ba29c31d6a15fc51e6d64a957edb00e9ca655d.zip
ocamlPackages.awa: 0.2.0 → 0.3.0
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/awa/default.nix7
-rw-r--r--pkgs/development/ocaml-modules/awa/lwt.nix21
2 files changed, 3 insertions, 25 deletions
diff --git a/pkgs/development/ocaml-modules/awa/default.nix b/pkgs/development/ocaml-modules/awa/default.nix
index 6b52ddf01f1a..4c92b58bdbc6 100644
--- a/pkgs/development/ocaml-modules/awa/default.nix
+++ b/pkgs/development/ocaml-modules/awa/default.nix
@@ -8,14 +8,13 @@
 
 buildDunePackage rec {
   pname = "awa";
-  version = "0.2.0";
+  version = "0.3.0";
 
-  minimalOCamlVersion = "4.08";
-  duneVersion = "3";
+  minimalOCamlVersion = "4.10";
 
   src = fetchurl {
     url = "https://github.com/mirage/awa-ssh/releases/download/v${version}/awa-${version}.tbz";
-    hash = "sha256-hsmTuoubBdsEyGe8zmfG7JihY0LFM4lErpPKUVobIX8=";
+    hash = "sha256-BtbReSnnAN+u1Vy63afO1yheoDqsIRU2rig0y1QDtuw=";
   };
 
   propagatedBuildInputs = [
diff --git a/pkgs/development/ocaml-modules/awa/lwt.nix b/pkgs/development/ocaml-modules/awa/lwt.nix
deleted file mode 100644
index 241df784ad59..000000000000
--- a/pkgs/development/ocaml-modules/awa/lwt.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ buildDunePackage, awa
-, cstruct, mtime, lwt, cstruct-unix, mirage-crypto-rng
-}:
-
-buildDunePackage {
-  pname = "awa-lwt";
-
-  inherit (awa) version src;
-
-  duneVersion = "3";
-
-  propagatedBuildInputs = [
-    awa cstruct mtime lwt mirage-crypto-rng
-  ];
-
-  doCheck = true;
-  nativeCheckInputs = [ awa ];
-  checkInputs = [ cstruct-unix ];
-
-  meta = awa.meta // { mainProgram = "awa_lwt_server"; };
-}