ocamlPackages.either: init at 1.0.0
This commit is contained in:
parent
fe111fc679
commit
7fee56ec59
20
pkgs/development/ocaml-modules/either/default.nix
Normal file
20
pkgs/development/ocaml-modules/either/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildDunePackage, fetchurl }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "either";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/either/releases/download/${version}/either-${version}.tbz";
|
||||
sha256 = "bf674de3312dee7b7215f07df1e8a96eb3d679164b8a918cdd95b8d97e505884";
|
||||
};
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Compatibility Either module";
|
||||
license = licenses.mit;
|
||||
homepage = "https://github.com/mirage/either";
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
};
|
||||
}
|
@ -281,6 +281,8 @@ let
|
||||
|
||||
eigen = callPackage ../development/ocaml-modules/eigen { };
|
||||
|
||||
either = callPackage ../development/ocaml-modules/either { };
|
||||
|
||||
elina = callPackage ../development/ocaml-modules/elina { };
|
||||
|
||||
eliom = callPackage ../development/ocaml-modules/eliom { };
|
||||
|
Loading…
Reference in New Issue
Block a user