summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-01-14 09:30:27 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-01-21 07:27:28 +0100
commit0f7016d404d0e85b226101a462f266d1463adb4d (patch)
tree58bc869aaf75491df0a9e18963a663447e4c5c71
parentocamlPackages.stdint: disable for OCaml < 4.07 (diff)
downloadnixpkgs-0f7016d404d0e85b226101a462f266d1463adb4d.tar.gz
ocamlPackages.ocaml-migrate-parsetree: 1.4.0 → 1.5.0
-rw-r--r--pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
index 23940ef14995..f633d17252cd 100644
--- a/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-migrate-parsetree/default.nix
@@ -1,22 +1,22 @@
-{ stdenv, fetchFromGitHub, buildDunePackage, result, ppx_derivers }:
+{ lib, fetchFromGitHub, buildDunePackage, result, ppx_derivers }:
buildDunePackage rec {
pname = "ocaml-migrate-parsetree";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchFromGitHub {
owner = "ocaml-ppx";
repo = pname;
rev = "v${version}";
- sha256 = "0sv1p4615l8gpbah4ya2c40yr6fbvahvv3ks7zhrsgcwcq2ljyr2";
+ sha256 = "0ms7nx7x16nkbm9rln3sycbzg6ad8swz8jw6bjndrill8bg3fipv";
};
propagatedBuildInputs = [ ppx_derivers result ];
meta = {
description = "Convert OCaml parsetrees between different major versions";
- license = stdenv.lib.licenses.lgpl21;
- maintainers = [ stdenv.lib.maintainers.vbgl ];
+ license = lib.licenses.lgpl21;
+ maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
};
}