summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-12-06 17:48:18 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2021-01-21 15:06:57 +0100
commit6410340ea92be069fd1ae65b1e79494416946dd8 (patch)
treebb069ba114aac6582e52030cad39406b29c9396e /pkgs/development/ocaml-modules
parentb97a90532e00601a26568bca60d850a277b142c5 (diff)
ocamlPackages.opam-file-format: 2.0.0 -> 2.1.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/opam-file-format/default.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/opam-file-format/default.nix b/pkgs/development/ocaml-modules/opam-file-format/default.nix
index ee9961d1533e..04079fcb4761 100644
--- a/pkgs/development/ocaml-modules/opam-file-format/default.nix
+++ b/pkgs/development/ocaml-modules/opam-file-format/default.nix
@@ -1,21 +1,29 @@
-{ stdenv, lib, fetchFromGitHub, ocaml, findlib }:
+{ stdenv, lib, fetchpatch, fetchFromGitHub, ocaml, findlib }:
stdenv.mkDerivation rec {
- version = "2.0.0";
+ version = "2.1.2";
name = "ocaml${ocaml.version}-opam-file-format-${version}";
src = fetchFromGitHub {
owner = "ocaml";
repo = "opam-file-format";
rev = version;
- sha256 = "0fqb99asnair0043hhc8r158d6krv5nzvymd0xwycr5y72yrp0hv";
+ sha256 = "19xppn2s3yjid8jc1wh8gdf5mgmlpzby2cf2slmnbyrgln3vj6i2";
};
buildInputs = [ ocaml findlib ];
installFlags = [ "LIBDIR=$(OCAMLFIND_DESTDIR)" ];
- patches = [ ./optional-static.patch ];
+ patches = [
+ ./optional-static.patch
+ # fix no implementation error for OpamParserTypes
+ # can be removed at next release presumably
+ (fetchpatch {
+ url = "https://github.com/ocaml/opam-file-format/pull/41/commits/2a9a92ec334e0bf2adf8d2b4c1b83f1f9f68df8f.patch";
+ sha256 = "090nl7yciyyidmbjfryw3wyx7srh6flnrr4zgyhv4kvjsvq944y2";
+ })
+ ];
meta = {
description = "Parser and printer for the opam file syntax";