google-drive-ocamlfuse: new expression

This commit is contained in:
Benno Fünfstück
2015-01-25 22:10:09 +01:00
parent 8408136da7
commit be58ce4815
6 changed files with 112 additions and 1 deletions
@@ -0,0 +1,19 @@
{ stdenv, ocaml, findlib, fetchurl, curl, ncurses }:
stdenv.mkDerivation rec {
name = "ocurl-0.7.2";
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/1463/${name}.tar.gz";
sha256 = "0yn7f3g5wva8nqxh76adpq9rihggc405jkqysfghzwnf3yymyqrr";
};
buildInputs = [ocaml findlib curl ncurses];
createFindlibDestdir = true;
meta = {
description = "OCaml bindings to libcurl";
license = stdenv.lib.licenses.bsd;
homepage = http://ocurl.forge.ocamlcore.org/;
maintainers = with stdenv.lib.maintainers; [ bennofs ];
platforms = ocaml.meta.platforms;
};
}