My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/ocaml-modules/easy-format/default.nix

30 lines
709 B

{ lib, stdenv, fetchFromGitHub, ocaml, findlib }:
stdenv.mkDerivation rec {
10 years ago
pname = "easy-format";
version = "1.2.0";
10 years ago
src = fetchFromGitHub {
owner = "mjambon";
repo = "easy-format";
rev = "v${version}";
sha256 = "sha256-qf73+T9a+eDy78iZgpA08TjIo+lvjftfSkwyT3M96gE=";
10 years ago
};
nativeBuildInputs = [ ocaml findlib ];
strictDeps = true;
10 years ago
createFindlibDestdir = true;
doCheck = true;
checkTarget = "test";
meta = with lib; {
10 years ago
description = "A high-level and functional interface to the Format module of the OCaml standard library";
homepage = "https://github.com/ocaml-community/easy-format";
license = licenses.bsd3;
maintainers = [ maintainers.vbgl ];
10 years ago
};
}