at 17.09-beta 24 lines 608 B view raw
1{ stdenv, fetchurl, ocaml, ncurses }: 2 3stdenv.mkDerivation rec { 4 5 name = "omake-${version}"; 6 version = "0.10.2"; 7 8 src = fetchurl { 9 url = "http://download.camlcity.org/download/${name}.tar.gz"; 10 sha256 = "1znnlkpz89hk44byvnl1pr92ym6hwfyyw2qm9clq446r6l2z4m64"; 11 }; 12 13 buildInputs = [ ocaml ncurses ]; 14 15 meta = { 16 description = "A build system designed for scalability and portability"; 17 homepage = http://projects.camlcity.org/projects/omake.html; 18 license = with stdenv.lib.licenses; [ 19 mit /* scripts */ 20 gpl2 /* program */ 21 ]; 22 inherit (ocaml.meta) platforms; 23 }; 24}