mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocaml-pa_ounit: add initial version (112.24.00) to the system
This commit is contained in:
parent
21fa39af2e
commit
12c3b11bf4
2 changed files with 22 additions and 0 deletions
20
pkgs/development/ocaml-modules/pa_ounit/default.nix
Normal file
20
pkgs/development/ocaml-modules/pa_ounit/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{stdenv, buildOcaml, fetchurl, ounit}:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "pa_ounit";
|
||||
version = "112.24.00";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/janestreet/pa_ounit/archive/${version}.tar.gz";
|
||||
sha256 = "fa04e72fe1db41e6dc64f9707cf5705cb9b957aa93265120c875c808eb9b9b96";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ ounit ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/janestreet/pa_ounit;
|
||||
description = "OCaml inline testing";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.ericbmerritt ];
|
||||
};
|
||||
}
|
|
@ -4325,6 +4325,8 @@ let
|
|||
|
||||
ocurl = callPackage ../development/ocaml-modules/ocurl { };
|
||||
|
||||
pa_ounit = callPackage ../development/ocaml-modules/pa_ounit { };
|
||||
|
||||
pprint = callPackage ../development/ocaml-modules/pprint { };
|
||||
|
||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||
|
|
Loading…
Reference in a new issue