aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/ocamlfuse
diff options
context:
space:
mode:
authorKim Lindberger <kim.lindberger@gmail.com>2020-05-10 21:24:18 +0200
committerGitHub <noreply@github.com>2020-05-10 21:24:18 +0200
commit7451f11730f1a7584fa26ba068548a2ce714056b (patch)
tree5734eb7c75be203869c8a2faed026b9c0f3a3ce5 /pkgs/development/ocaml-modules/ocamlfuse
parent1013153a591f65436e3272c70f5dac515899f921 (diff)
google-drive-ocamlfuse: 0.7.2 -> 0.7.21 (#86469)
ocamlPackages.ocamlfuse: 2.7.1_cvs5 -> 2.7.1_cvs6_e35e76b
Diffstat (limited to 'pkgs/development/ocaml-modules/ocamlfuse')
-rw-r--r--pkgs/development/ocaml-modules/ocamlfuse/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
index 90c449e383fd..dabe7ae52a3e 100644
--- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix
+++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix
@@ -1,22 +1,17 @@
-{ stdenv, fetchFromGitHub, ocaml, camlidl, fuse, findlib }:
+{ stdenv, buildDunePackage, fetchFromGitHub, camlidl, fuse }:
-stdenv.mkDerivation rec {
+buildDunePackage {
pname = "ocamlfuse";
- version = "2.7.1_cvs5";
+ version = "2.7.1_cvs6_e35e76b";
src = fetchFromGitHub {
owner = "astrada";
repo = "ocamlfuse";
- rev = "v${version}";
- sha256 = "01ayw2hzpxan95kncbxh9isj9g149cs8scq3xim1vy8bz085wb0m";
+ rev = "e35e76bee3b06806256b5bfca108b7697267cd5c";
+ sha256 = "1v9g0wh7rnjkrjrnw50145g6ry38plyjs8fq8w0nlzwizhf3qhff";
};
- buildInputs = [ocaml findlib];
- propagatedBuildInputs = [camlidl fuse];
- configurePhase = '' ocaml setup.ml -configure --prefix $out '';
- buildPhase = "ocaml setup.ml -build";
- installPhase = "ocaml setup.ml -install";
- createFindlibDestdir = true;
+ propagatedBuildInputs = [ camlidl fuse ];
meta = {
homepage = "https://sourceforge.net/projects/ocamlfuse";