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

25 lines
610 B
Nix
Raw Normal View History

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