Skip to content

Commit

Permalink
dune_3: 3.16.1 -> 3.17.0
Browse files Browse the repository at this point in the history
Co-authored-by: Vincent Laporte <[email protected]>
  • Loading branch information
smorimoto and vbgl committed Dec 13, 2024
1 parent c0af03a commit e85f8a2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 4 additions & 0 deletions pkgs/development/ocaml-modules/hxd/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ buildDunePackage rec {

doCheck = true;

preCheck = ''
export DUNE_CACHE=disabled
'';

meta = with lib; {
description = "Hexdump in OCaml";
homepage = "https://github.com/dinosaure/hxd";
Expand Down
9 changes: 8 additions & 1 deletion pkgs/development/ocaml-modules/ocplib-simplex/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, buildDunePackage, logs, zarith }:
{ lib, fetchFromGitHub, fetchpatch, buildDunePackage, logs, zarith }:

buildDunePackage rec {
pname = "ocplib-simplex";
Expand All @@ -11,6 +11,13 @@ buildDunePackage rec {
hash = "sha256-fLTht+TlyJIsIAsRLmmkFKsnbSeW3BgyAyURFdnGfko=";
};

# Fix tests with dune 3.17.0
# See https://github.com/OCamlPro/ocplib-simplex/issues/35
patches = (fetchpatch {
url = "https://github.com/OCamlPro/ocplib-simplex/commit/456a744bddd397daade7959d4a49cfadafdadd33.patch";
hash = "sha256-tQUXOoRGe1AIzHcm6j2MopROxn75OE9YUP+CwcKUbVg=";
});

propagatedBuildInputs = [ logs zarith ];

doCheck = true;
Expand Down
5 changes: 5 additions & 0 deletions pkgs/development/ocaml-modules/reason-react/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ buildDunePackage {
melange
];
doCheck = true;
# Fix tests with dune 3.17.0
# See https://github.com/reasonml/reason-react/issues/870
preCheck = ''
export DUNE_CACHE=disabled
'';
meta = reason-react-ppx.meta // {
description = "Reason bindings for React.js";
};
Expand Down
4 changes: 2 additions & 2 deletions pkgs/development/tools/ocaml/dune/3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ else

stdenv.mkDerivation rec {
pname = "dune";
version = "3.16.1";
version = "3.17.0";

src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
hash = "sha256-t4GuIPh2E8KhG9BxeAngBHDILWFeFSZPmmTgMwUaw94=";
hash = "sha256-LDqmxB7Tnj1sGiktdfSAa9gDEIQa/FFnOqWc6cgWUHw=";
};

nativeBuildInputs = [ ocaml findlib ];
Expand Down

0 comments on commit e85f8a2

Please sign in to comment.