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

25 lines
608 B
Nix
Raw Normal View History

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