summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/omake/default.nix
blob: da7a5b439ab162bfce8f88bce2f20430ed2cc9b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, ocaml, ncurses }:

stdenv.mkDerivation rec {

  pname = "omake";
  version = "0.10.3";

  src = fetchurl {
    url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
    sha256 = "07bdg1h5i7qnlv9xq81ad5hfypl10hxm771h4rjyl5cn8plhfcgz";
  };

  buildInputs = [ ocaml ncurses ];

  meta = {
    description = "A build system designed for scalability and portability";
    homepage = http://projects.camlcity.org/projects/omake.html;
    license = with stdenv.lib.licenses; [
      mit /* scripts */
      gpl2 /* program */
    ];
    inherit (ocaml.meta) platforms;
  };
}