about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ezxmlm
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/ezxmlm
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/ezxmlm')
-rw-r--r--pkgs/development/ocaml-modules/ezxmlm/default.nix15
1 files changed, 4 insertions, 11 deletions
diff --git a/pkgs/development/ocaml-modules/ezxmlm/default.nix b/pkgs/development/ocaml-modules/ezxmlm/default.nix
index d40c47dd7a40..1740bd77fdb2 100644
--- a/pkgs/development/ocaml-modules/ezxmlm/default.nix
+++ b/pkgs/development/ocaml-modules/ezxmlm/default.nix
@@ -1,24 +1,18 @@
-{ stdenv, fetchFromGitHub, ocaml, findlib, dune, xmlm }:
+{ stdenv, fetchFromGitHub, buildDunePackage, xmlm }:
 
-stdenv.mkDerivation rec {
+buildDunePackage rec {
+  pname = "ezxmlm";
   version = "1.0.2";
-  name = "ocaml${ocaml.version}-ezxmlm-${version}";
 
   src = fetchFromGitHub {
     owner = "avsm";
-    repo = "ezxmlm";
+    repo = pname;
     rev = "v${version}";
     sha256 = "1dgr61f0hymywikn67inq908x5adrzl3fjx3v14l9k46x7kkacl9";
   };
 
   propagatedBuildInputs = [ xmlm ];
 
-  buildInputs = [ ocaml findlib dune ];
-
-  buildFlags = "build";
-
-  inherit (dune) installPhase;
-
   meta = with stdenv.lib; {
     description = "Combinators to use with xmlm for parsing and selection";
     longDescription = ''
@@ -34,7 +28,6 @@ stdenv.mkDerivation rec {
     '';
     maintainers = [ maintainers.carlosdagos ];
     inherit (src.meta) homepage;
-    inherit (ocaml.meta) platforms;
     license = licenses.isc;
   };
 }