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}";
version = "0.10.1";
src = fetchurl {
2016-11-27 01:13:13 -08:00
url = "http://download.camlcity.org/download/${name}.tar.gz";
sha256 = "093ansbppms90hiqvzar2a46fj8gm9iwnf8gn38s6piyp70lrbsj";
};
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;
};
}