summary refs log blame commit diff
path: root/pkgs/development/tools/ocaml/omake/default.nix
blob: 8be574a8a4c6f60fa60b49c75a3334f7a0ff37cb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                
                                                                           



















                                                                          
                                                                            



                            
{stdenv, fetchurl, makeWrapper, ocaml, ncurses}:
let
  pname = "omake";
  version = "0.9.8.5-3";
  webpage = "http://omake.metaprl.org";
in
stdenv.mkDerivation {

  name = "${pname}-${version}";

  src = fetchurl {
    url = "mirror://debian/pool/main/o/omake/omake_${version}.orig.tar.gz";
    sha256 = "1bfxbsimfivq0ar2g5fkzvr5ql97n5dg562pfyd29y4zyh4mwrsv";
  };
  patchFlags = "-p0";
  patches = [ ./omake-build-0.9.8.5.diff ./omake-lm_printf-gcc44.diff ];

  buildInputs = [ ocaml makeWrapper ncurses ];

  phases = "unpackPhase patchPhase buildPhase";
  buildPhase = ''
    make bootstrap
    make PREFIX=$out all
    make PREFIX=$out install
  '';
#  prefixKey = "-prefix ";
#
#  configureFlags = if transitional then "--transitional" else "--strict";
#
#  buildFlags = "world.opt";

  meta = {
    description = "A build system designed for scalability and portability";
    homepage = "${webpage}";
    license = "GPL";
  };
}