summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lwt-dllist
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-07-24 20:24:27 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2021-07-26 11:55:58 +0200
commitaec81503f575b9a4e8ed3bb791af3957cc55a451 (patch)
treee0a99ad93f179bce75430e2baf23e8c176b297a8 /pkgs/development/ocaml-modules/lwt-dllist
parent699ea6543988a25349f1632dbcfe42f8a79c5547 (diff)
downloadnixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar.gz
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar.bz2
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar.lz
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar.xz
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.tar.zst
nixpkgs-aec81503f575b9a4e8ed3bb791af3957cc55a451.zip
ocamlPackages.lwt-dllist: 1.0.0 -> 1.0.1
https://github.com/mirage/lwt-dllist/releases/tag/v1.0.1
Diffstat (limited to 'pkgs/development/ocaml-modules/lwt-dllist')
-rw-r--r--pkgs/development/ocaml-modules/lwt-dllist/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/lwt-dllist/default.nix b/pkgs/development/ocaml-modules/lwt-dllist/default.nix
index 28a6f5f43d7..b28981b1b77 100644
--- a/pkgs/development/ocaml-modules/lwt-dllist/default.nix
+++ b/pkgs/development/ocaml-modules/lwt-dllist/default.nix
@@ -1,23 +1,22 @@
-{ lib, buildDunePackage, fetchurl, lwt }:
+{ lib, buildDunePackage, fetchurl, lwt, ocaml }:
 
 buildDunePackage rec {
   pname = "lwt-dllist";
-  version = "1.0.0";
+  version = "1.0.1";
 
   useDune2 = true;
 
-  minimumOCamlVersion = "4.03";
+  minimumOCamlVersion = "4.02";
 
   src = fetchurl {
     url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
-    sha256 = "0g111f8fq9k1hwccpkhylkp83f73mlz4xnxxr3rf9xpi2f8fh7j9";
+    sha256 = "e86ce75e40f00d51514cf8b2e71e5184c4cb5dae96136be24613406cfc0dba6e";
   };
 
-  propagatedBuildInputs = [
+  checkInputs = [
     lwt
   ];
-
-  doCheck = true;
+  doCheck = lib.versionAtLeast ocaml.version "4.03";
 
   meta = with lib; {
     description = "Mutable doubly-linked list with Lwt iterators";