My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/tar/unix.nix

27 lines
413 B

{ lib
, buildDunePackage
, tar
, cstruct
, cstruct-lwt
, re
, lwt
}:
buildDunePackage rec {
pname = "tar-unix";
inherit (tar) version src useDune2 doCheck;
propagatedBuildInputs = [
tar
cstruct
cstruct-lwt
re
lwt
];
meta = {
description = "Decode and encode tar format files from Unix";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}