mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
ocaml-atd: add initial version (1.1.2) to the system
This commit is contained in:
parent
9cc8b80c96
commit
7efe850b1d
26
pkgs/development/ocaml-modules/atd/default.nix
Normal file
26
pkgs/development/ocaml-modules/atd/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user