From 86e0419e24f05a4fbfc79f535f6fb023a62a3633 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 14 Mar 2023 08:38:50 +0100 Subject: [PATCH] =?UTF-8?q?ocamlPackages.spelll:=200.3=20=E2=86=92=200.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/spelll/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/ocaml-modules/spelll/default.nix b/pkgs/development/ocaml-modules/spelll/default.nix index 9df0779e53a..076cc5cc3a4 100644 --- a/pkgs/development/ocaml-modules/spelll/default.nix +++ b/pkgs/development/ocaml-modules/spelll/default.nix @@ -1,21 +1,22 @@ { lib, fetchFromGitHub, buildDunePackage , seq +, stdlib-shims }: buildDunePackage rec { pname = "spelll"; - version = "0.3"; + version = "0.4"; - useDune2 = true; + duneVersion = "3"; src = fetchFromGitHub { owner = "c-cube"; repo = pname; rev = "v${version}"; - sha256 = "03adqisgsazsxdkrypp05k3g91hydfgcif2014il63gdbd9nhzlh"; + hash = "sha256-nI8fdArYynR70PUJIgyogGBCe4gFhfVzuRdZzFGKqOc="; }; - propagatedBuildInputs = [ seq ]; + propagatedBuildInputs = [ seq stdlib-shims ]; meta = { inherit (src.meta) homepage;