summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Caglayan <alizter@gmail.com>2023-05-23 12:50:44 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2023-06-08 11:03:14 +0200
commit736fad09031bb69ce291c69d8c755fc12200b79a (patch)
tree96bb193b2275a07abe3d1557ce7bdaa3a8c0d279
parentvirtiofsd: fix SIGSYS when seccomp is turned on (diff)
downloadnixpkgs-736fad09031bb69ce291c69d8c755fc12200b79a.tar.gz
dune_3: 3.7.1 -> 3.8.1
Signed-off-by: Ali Caglayan <alizter@gmail.com> (cherry picked from commit eaa13f34501529446de00aa1630a81674e59a276)
-rw-r--r--pkgs/development/tools/ocaml/dune/3.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/ocaml/dune/3.nix b/pkgs/development/tools/ocaml/dune/3.nix
index 74e3ce56ec93..ae82799ceae4 100644
--- a/pkgs/development/tools/ocaml/dune/3.nix
+++ b/pkgs/development/tools/ocaml/dune/3.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, ocaml, findlib, darwin, ocaml-lsp }:
+{ lib, stdenv, fetchurl, ocaml, findlib, darwin, ocaml-lsp, fetchFromGitHub }:
if lib.versionOlder ocaml.version "4.08"
then throw "dune 3 is not available for OCaml ${ocaml.version}"
@@ -6,11 +6,11 @@ else
stdenv.mkDerivation rec {
pname = "dune";
- version = "3.7.1";
+ version = "3.8.1";
src = fetchurl {
url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz";
- sha256 = "sha256-rfw48UwBiKKtgNYUUdAR0nq4g5txdJLXrUL3y5EcVMM=";
+ sha256 = "sha256-lBOl1uudeWigRj3rudnxvnMCU0WAm4J5eNDBTbds+RQ=";
};
nativeBuildInputs = [ ocaml findlib ];