2021-01-23 12:26:19 +00:00
|
|
|
{ lib, stdenv, fetchurl, ocaml, ncurses }:
|
2010-05-27 20:44:03 +01:00
|
|
|
|
2016-11-27 09:13:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "omake";
|
2017-11-05 08:39:59 +00:00
|
|
|
version = "0.10.3";
|
2010-05-27 20:44:03 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://download.camlcity.org/download/${pname}-${version}.tar.gz";
|
2017-11-05 08:39:59 +00:00
|
|
|
sha256 = "07bdg1h5i7qnlv9xq81ad5hfypl10hxm771h4rjyl5cn8plhfcgz";
|
2010-05-27 20:44:03 +01:00
|
|
|
};
|
|
|
|
|
2016-11-27 09:13:13 +00:00
|
|
|
buildInputs = [ ocaml ncurses ];
|
2010-05-27 20:44:03 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "A build system designed for scalability and portability";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://projects.camlcity.org/projects/omake.html";
|
2021-01-23 12:26:19 +00:00
|
|
|
license = with lib.licenses; [
|
2016-11-27 09:13:13 +00:00
|
|
|
mit /* scripts */
|
|
|
|
gpl2 /* program */
|
|
|
|
];
|
|
|
|
inherit (ocaml.meta) platforms;
|
2010-05-27 20:44:03 +01:00
|
|
|
};
|
|
|
|
}
|