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

25 lines
610 B
Nix
Raw Normal View History

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