nixpkgs/pkgs/development/tools/ocaml/omake/default.nix

25 lines
608 B
Nix
Raw Normal View History

2016-11-27 01:13:13 -08:00
{ stdenv, fetchurl, ocaml, ncurses }:
2016-11-27 01:13:13 -08:00
stdenv.mkDerivation rec {
name = "omake-${version}";
2017-02-01 11:34:42 -08:00
version = "0.10.2";
src = fetchurl {
2016-11-27 01:13:13 -08:00
url = "http://download.camlcity.org/download/${name}.tar.gz";
2017-02-01 11:34:42 -08:00
sha256 = "1znnlkpz89hk44byvnl1pr92ym6hwfyyw2qm9clq446r6l2z4m64";
};
2016-11-27 01:13:13 -08:00
buildInputs = [ ocaml ncurses ];
meta = {
description = "A build system designed for scalability and portability";
2016-11-27 01:13:13 -08:00
homepage = http://projects.camlcity.org/projects/omake.html;
license = with stdenv.lib.licenses; [
mit /* scripts */
gpl2 /* program */
];
inherit (ocaml.meta) platforms;
};
}