From 595d92eb7a1fee050e52a5ad043a45cea887026c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 21 Sep 2017 04:14:22 -0700 Subject: [PATCH] ocamlfuse: 2.7-3 -> 2.7.1_cvs5 (#29606) --- pkgs/development/ocaml-modules/ocamlfuse/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix index de69ce47228..e5a3c282e58 100644 --- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix +++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix @@ -1,12 +1,14 @@ { stdenv, fetchFromGitHub, ocaml, camlidl, fuse, findlib }: stdenv.mkDerivation rec { - name = "ocamlfuse-2.7-3"; + name = "ocamlfuse-${version}"; + version = "2.7.1_cvs5"; + src = fetchFromGitHub { owner = "astrada"; repo = "ocamlfuse"; - rev = "a085349685758668854499ce6c1fc00c83a5c23b"; - sha256 = "1pyml2ay5wab1blwpzrv1r6lnycm000jk6aar8i9fkdnh15sa6c3"; + rev = "v${version}"; + sha256 = "01ayw2hzpxan95kncbxh9isj9g149cs8scq3xim1vy8bz085wb0m"; }; buildInputs = [ocaml findlib]; @@ -18,9 +20,9 @@ stdenv.mkDerivation rec { meta = { homepage = http://sourceforge.net/projects/ocamlfuse; + description = "OCaml bindings for FUSE"; license = stdenv.lib.licenses.gpl2; - description = "ocaml binding for fuse"; - maintainers = with stdenv.lib.maintainers; [ bennofs ]; platforms = stdenv.lib.platforms.linux; + maintainers = with stdenv.lib.maintainers; [ bennofs ]; }; }