about summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/omake/default.nix
blob: 53152898fd6f926795c245b0c27a7a9fdf1c3984 (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 {

  name = "omake-${version}";
  version = "0.10.1";

  src = fetchurl {
    url = "http://download.camlcity.org/download/${name}.tar.gz";
    sha256 = "093ansbppms90hiqvzar2a46fj8gm9iwnf8gn38s6piyp70lrbsj";
  };

  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;
  };
}