mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Adds ocaml-qtest-2.0.1
Inline test extraction utility for OCaml, originally developed internally for Batteries Homepage: https://github.com/vincent-hugot/iTeML
This commit is contained in:
parent
a246b849eb
commit
4c8681fea1
2 changed files with 29 additions and 0 deletions
25
pkgs/development/ocaml-modules/qtest/default.nix
Normal file
25
pkgs/development/ocaml-modules/qtest/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchzip, ocaml, oasis, findlib, ounit }:
|
||||
|
||||
let version = "2.0.1"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-qtest-${version}";
|
||||
src = fetchzip {
|
||||
url = "https://github.com/vincent-hugot/iTeML/archive/v${version}.tar.gz";
|
||||
sha256 = "00sir7q7z78s22w8fzrgw9gqm7r8ww0bgwqxrq6nsbbclgxj9c6i";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml oasis findlib ];
|
||||
propagatedBuildInputs = [ ounit ];
|
||||
|
||||
buildPhase = "ocaml do.ml qtest build $out";
|
||||
createFindlibDestdir = true;
|
||||
installPhase = "ocaml do.ml qtest install $out";
|
||||
|
||||
meta = {
|
||||
description = "Inline (Unit) Tests for OCaml (formerly “qtest”)";
|
||||
homepage = https://github.com/vincent-hugot/iTeML;
|
||||
platforms = ocaml.meta.platforms;
|
||||
maintainers = with stdenv.lib.maintainers; [ vbgl ];
|
||||
};
|
||||
}
|
|
@ -4179,6 +4179,10 @@ let
|
|||
|
||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||
|
||||
qtest = callPackage ../development/ocaml-modules/qtest {
|
||||
oasis = ocaml_oasis;
|
||||
};
|
||||
|
||||
re = callPackage ../development/ocaml-modules/re { };
|
||||
|
||||
safepass = callPackage ../development/ocaml-modules/safepass { };
|
||||
|
|
Loading…
Reference in a new issue