about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
diff options
context:
space:
mode:
authorThéo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-11-05 11:21:46 +0100
committerThéo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-11-07 10:08:03 +0100
commit794158fcd54b862f3775bc8b54495a842a250b7b (patch)
tree333ef218a45bf9ca5d20186dc67bb9bd5209aca3 /pkgs/development/ocaml-modules/conduit/lwt-unix.nix
parent5fc73fd52e7e9aa56911d152e3a5c49de8a18f61 (diff)
downloadnixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar.gz
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar.bz2
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar.lz
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar.xz
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.tar.zst
nixlib-794158fcd54b862f3775bc8b54495a842a250b7b.zip
buildDunePackage: new support function; use it to refactor some OCaml derivations
Diffstat (limited to 'pkgs/development/ocaml-modules/conduit/lwt-unix.nix')
-rw-r--r--pkgs/development/ocaml-modules/conduit/lwt-unix.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/pkgs/development/ocaml-modules/conduit/lwt-unix.nix b/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
index b4357979de75..b6d2e24ec551 100644
--- a/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
+++ b/pkgs/development/ocaml-modules/conduit/lwt-unix.nix
@@ -1,4 +1,4 @@
-{ stdenv, ocaml, findlib, dune, conduit-lwt
+{ stdenv, buildDunePackage, conduit-lwt
 , logs, ppx_sexp_conv, lwt_ssl
 }:
 
@@ -6,13 +6,11 @@ if !stdenv.lib.versionAtLeast conduit-lwt.version "1.0"
 then conduit-lwt
 else
 
-stdenv.mkDerivation rec {
-	name = "ocaml${ocaml.version}-conduit-lwt-unix-${version}";
-	inherit (conduit-lwt) version src installPhase meta;
+buildDunePackage rec {
+	pname = "conduit-lwt-unix";
+	inherit (conduit-lwt) version src meta;
 
-	buildInputs = [ ocaml findlib dune ppx_sexp_conv ];
+	buildInputs = [ ppx_sexp_conv ];
 
 	propagatedBuildInputs = [ conduit-lwt logs lwt_ssl ];
-
-	buildPhase = "dune build -p conduit-lwt-unix";
 }