ocaml-atd: add initial version (1.1.2) to the system

wip/yesman
Eric Merritt 9 years ago
parent 9cc8b80c96
commit 7efe850b1d
  1. 26
      pkgs/development/ocaml-modules/atd/default.nix
  2. 1
      pkgs/top-level/all-packages.nix

@ -0,0 +1,26 @@
{stdenv, menhir, easy-format, buildOcaml, fetchurl, which}:
buildOcaml rec {
name = "atd";
version = "1.1.2";
src = fetchurl {
url = "https://github.com/mjambon/atd/archive/v${version}.tar.gz";
sha256 = "0ef10c63192aed75e9a4274e89c5f9ca27efb1ef230d9949eda53ad4a9a37291";
};
installPhase = ''
mkdir -p $out/bin
make PREFIX=$out install
'';
buildInputs = [ which ];
propagatedBuildInputs = [ menhir easy-format ];
meta = with stdenv.lib; {
homepage = https://github.com/mjambon/atd;
description = "Syntax for cross-language type definitions";
license = licenses.bsd3;
maintainers = [ maintainers.jwilberding ];
};
}

@ -4063,6 +4063,7 @@ let
async = callPackage ../development/ocaml-modules/async { };
atd = callPackage ../development/ocaml-modules/atd { };
base64 = callPackage ../development/ocaml-modules/base64 { };
bolt = callPackage ../development/ocaml-modules/bolt { };

Loading…
Cancel
Save