about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/rresult/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/rresult/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/rresult/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/rresult/default.nix b/pkgs/development/ocaml-modules/rresult/default.nix
index cdaa7857398f..2573c95c6281 100644
--- a/pkgs/development/ocaml-modules/rresult/default.nix
+++ b/pkgs/development/ocaml-modules/rresult/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
+{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, topkg, result }:
 
 stdenv.mkDerivation rec {
 	name = "ocaml${ocaml.version}-rresult-${version}";
@@ -15,10 +15,10 @@ stdenv.mkDerivation rec {
 	inherit (topkg) buildPhase installPhase;
 
 	meta = {
-		license = stdenv.lib.licenses.isc;
+		license = lib.licenses.isc;
 		homepage = "https://erratique.ch/software/rresult";
 		description = "Result value combinators for OCaml";
-		maintainers = [ stdenv.lib.maintainers.vbgl ];
+		maintainers = [ lib.maintainers.vbgl ];
 		inherit (ocaml.meta) platforms;
 	};
 }