summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/csv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/csv/default.nix')
-rw-r--r--pkgs/development/ocaml-modules/csv/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/csv/default.nix b/pkgs/development/ocaml-modules/csv/default.nix
index 60496ad28dac..8cf2918989e0 100644
--- a/pkgs/development/ocaml-modules/csv/default.nix
+++ b/pkgs/development/ocaml-modules/csv/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, buildDunePackage }:
+{ lib, fetchurl, buildDunePackage }:
buildDunePackage rec {
pname = "csv";
@@ -13,8 +13,8 @@ buildDunePackage rec {
meta = {
description = "A pure OCaml library to read and write CSV files";
- license = stdenv.lib.licenses.lgpl21;
- maintainers = [ stdenv.lib.maintainers.vbgl ];
+ license = lib.licenses.lgpl21;
+ maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/Chris00/ocaml-csv";
};
}