ocamlPackages.zed: remove at 3.1.0 for OCaml < 4.08

This commit is contained in:
Vincent Laporte 2024-04-04 07:20:18 +02:00 committed by Vincent Laporte
parent 9306e3cc87
commit 0770ab6a87
1 changed files with 4 additions and 22 deletions

View File

@ -1,34 +1,16 @@
{ lib, buildDunePackage, fetchFromGitHub, ocaml, react, charInfo_width, result, uchar, uutf, uucp, uuseg }:
let
switch =
if lib.versionAtLeast ocaml.version "4.08"
then
{
version = "3.2.3";
sha256 = "sha256-lbhqjZxeUqHdd+yahRO+B6L2mc+h+4T2+qKVgWC2HY8=";
propagatedBuildInputs = [ react result uchar uutf uucp uuseg ];
}
else
{
version = "3.1.0";
sha256 = "04vr1a94imsghm98iigc35rhifsz0rh3qz2qm0wam2wvp6vmrx0p";
propagatedBuildInputs = [ charInfo_width react ];
};
in
{ lib, buildDunePackage, fetchFromGitHub, react, result, uchar, uutf, uucp, uuseg }:
buildDunePackage rec {
pname = "zed";
version = "3.2.3";
inherit (switch) version propagatedBuildInputs;
duneVersion = "3";
propagatedBuildInputs = [ react result uchar uutf uucp uuseg ];
src = fetchFromGitHub {
owner = "ocaml-community";
repo = pname;
rev = version;
sha256 = switch.sha256;
sha256 = "sha256-lbhqjZxeUqHdd+yahRO+B6L2mc+h+4T2+qKVgWC2HY8=";
};
meta = {