depot/third_party/nixpkgs/pkgs/development/tools/ocaml/omake/default.nix
Default email a3d4720129 Project import generated by Copybara.
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
2022-12-28 22:21:41 +01:00

24 lines
609 B
Nix

{ lib, stdenv, fetchurl, ocaml, ncurses }:
stdenv.mkDerivation rec {
pname = "omake";
version = "0.10.5";
src = fetchurl {
url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
sha256 = "sha256-VOFq2KLBbmZCRgHzfpD7p0iyF8yU1tTbyvTiOcpm98Q=";
};
buildInputs = [ ocaml ncurses ];
meta = {
description = "A build system designed for scalability and portability";
homepage = "http://projects.camlcity.org/projects/omake.html";
license = with lib.licenses; [
mit /* scripts */
gpl2 /* program */
];
inherit (ocaml.meta) platforms;
};
}