Skip to content

Commit

Permalink
ocamlPackages.mimic: 0.0.4 -> 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikstrid authored and vbgl committed Sep 21, 2022
1 parent f7af6ee commit e2f9df0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/ocaml-modules/mimic/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

buildDunePackage rec {
pname = "mimic";
version = "0.0.4";
version = "0.0.5";

minimalOCamlVersion = "4.08";

src = fetchurl {
url = "https://github.com/dinosaure/mimic/releases/download/${version}/mimic-${version}.tbz";
sha256 = "sha256-1Wb2xufgGKp3FJ+FYjK45i9B5+HohdPX+w9Sw0ph5JY=";
sha256 = "sha256-3qFjttVLgXKHOsr71550z7aVBcHPYzwdFeMpwHgWPa0=";
};

propagatedBuildInputs = [
Expand Down
23 changes: 23 additions & 0 deletions pkgs/development/ocaml-modules/mimic/happy-eyeballs.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, buildDunePackage, mimic, happy-eyeballs-mirage }:

buildDunePackage {
pname = "mimic-happy-eyeballs";

inherit (mimic) src version;

minimalOCamlVersion = "4.08";

strictDeps = true;

buildInputs = [
mimic
happy-eyeballs-mirage
];
doCheck = false;

meta = {
description = "A happy-eyeballs integration into mimic";
maintainers = [ lib.maintainers.ulrikstrid ];
inherit (mimic.meta) license homepage;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,8 @@ let

mimic = callPackage ../development/ocaml-modules/mimic { };

mimic-happy-eyeballs = callPackage ../development/ocaml-modules/mimic/happy-eyeballs.nix { };

minisat = callPackage ../development/ocaml-modules/minisat { };

mirage = callPackage ../development/ocaml-modules/mirage { };
Expand Down

0 comments on commit e2f9df0

Please sign in to comment.