Adds easy-format
This commit is contained in:
parent
a278c3dfa8
commit
b598497da9
27
pkgs/development/ocaml-modules/easy-format/default.nix
Normal file
27
pkgs/development/ocaml-modules/easy-format/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{stdenv, fetchurl, ocaml, findlib}:
|
||||
let
|
||||
pname = "easy-format";
|
||||
version = "1.0.2";
|
||||
webpage = "http://mjambon.com/${pname}.html";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://mjambon.com/releases/${pname}/${name}.tar.gz";
|
||||
sha256 = "07wlgprqvk92z0p2xzbnvh312ca6gvhy3xc6hxlqfawnnnin7rzi";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ];
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
description = "A high-level and functional interface to the Format module of the OCaml standard library";
|
||||
homepage = "${webpage}";
|
||||
license = "bsd";
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -3183,6 +3183,8 @@ let
|
||||
|
||||
deriving = callPackage ../development/tools/ocaml/deriving { };
|
||||
|
||||
easy-format = callPackage ../development/ocaml-modules/easy-format { };
|
||||
|
||||
findlib = callPackage ../development/tools/ocaml/findlib { };
|
||||
|
||||
dypgen = callPackage ../development/ocaml-modules/dypgen { };
|
||||
|
Loading…
Reference in New Issue
Block a user