lol

ocamlPackages.lwt-dllist: 1.0.0 -> 1.0.1

https://github.com/mirage/lwt-dllist/releases/tag/v1.0.1

authored by

sternenseemann and committed by
Vincent Laporte
aec81503 699ea654

+6 -7
+6 -7
pkgs/development/ocaml-modules/lwt-dllist/default.nix
··· 1 - { lib, buildDunePackage, fetchurl, lwt }: 1 + { lib, buildDunePackage, fetchurl, lwt, ocaml }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "lwt-dllist"; 5 - version = "1.0.0"; 5 + version = "1.0.1"; 6 6 7 7 useDune2 = true; 8 8 9 - minimumOCamlVersion = "4.03"; 9 + minimumOCamlVersion = "4.02"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 13 - sha256 = "0g111f8fq9k1hwccpkhylkp83f73mlz4xnxxr3rf9xpi2f8fh7j9"; 13 + sha256 = "e86ce75e40f00d51514cf8b2e71e5184c4cb5dae96136be24613406cfc0dba6e"; 14 14 }; 15 15 16 - propagatedBuildInputs = [ 16 + checkInputs = [ 17 17 lwt 18 18 ]; 19 - 20 - doCheck = true; 19 + doCheck = lib.versionAtLeast ocaml.version "4.03"; 21 20 22 21 meta = with lib; { 23 22 description = "Mutable doubly-linked list with Lwt iterators";