ocamlPackages.tar: 2.6.0 -> 3.3.0

comby: mark as broken
This commit is contained in:
Marijan Petričević 2025-05-23 10:40:02 -05:00 committed by Vincent Laporte
parent bea2d4fc6c
commit ec8b0eeac8
3 changed files with 3 additions and 6 deletions

View File

@ -3,23 +3,21 @@
fetchurl, fetchurl,
buildDunePackage, buildDunePackage,
camlp-streams, camlp-streams,
cstruct,
decompress, decompress,
}: }:
buildDunePackage rec { buildDunePackage rec {
pname = "tar"; pname = "tar";
version = "2.6.0"; version = "3.3.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/mirage/ocaml-tar/releases/download/v${version}/tar-${version}.tbz"; url = "https://github.com/mirage/ocaml-tar/releases/download/v${version}/tar-${version}.tbz";
hash = "sha256-yv8MtwRjQ+K/9/wPkhfk4xI1VV5MSIn7GUeSmFtvse4="; hash = "sha256-89aw1nf9QP0euAvMxgu2EyIDWL5Y9mxfqL8CV/Pl65Y=";
}; };
minimalOCamlVersion = "4.08"; minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ propagatedBuildInputs = [
camlp-streams camlp-streams
cstruct
decompress decompress
]; ];

View File

@ -1,7 +1,6 @@
{ {
buildDunePackage, buildDunePackage,
tar, tar,
cstruct-lwt,
lwt, lwt,
git, git,
}: }:
@ -12,7 +11,6 @@ buildDunePackage {
propagatedBuildInputs = [ propagatedBuildInputs = [
tar tar
cstruct-lwt
lwt lwt
]; ];

View File

@ -57,6 +57,7 @@ let
mainProgram = "comby"; mainProgram = "comby";
license = lib.licenses.asl20; license = lib.licenses.asl20;
homepage = "https://comby.dev"; homepage = "https://comby.dev";
broken = true; # Not compatible with ocamlPackages.tar ≥ 3
}; };
}; };