depot/third_party/nixpkgs/pkgs/development/tools/ocaml/omake/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

26 lines
616 B
Nix

{ lib, stdenv, fetchurl, ocaml }:
stdenv.mkDerivation rec {
pname = "omake";
version = "0.10.6";
src = fetchurl {
url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
hash = "sha256-AuSZEnybyk8HaDZ7mbwDqjFXMXVQ7TDRuRU/aRY8/yE=";
};
strictDeps = true;
nativeBuildInputs = [ ocaml ];
meta = {
description = "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;
};
}