biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / tar / default.nix
blobf0d8876fd41e2aa19693ee2b3d592877d9001394
1 { lib
2 , fetchurl
3 , buildDunePackage
4 , camlp-streams
5 , cstruct
6 , decompress
7 }:
9 buildDunePackage rec {
10   pname = "tar";
11   version = "2.6.0";
12   src = fetchurl {
13     url = "https://github.com/mirage/ocaml-tar/releases/download/v${version}/tar-${version}.tbz";
14     hash = "sha256-yv8MtwRjQ+K/9/wPkhfk4xI1VV5MSIn7GUeSmFtvse4=";
15   };
17   minimalOCamlVersion = "4.08";
19   propagatedBuildInputs = [
20     camlp-streams
21     cstruct
22     decompress
23   ];
25   doCheck = true;
27   meta = {
28     description = "Decode and encode tar format files in pure OCaml";
29     homepage = "https://github.com/mirage/ocaml-tar";
30     license = lib.licenses.mit;
31     maintainers = [ lib.maintainers.ulrikstrid ];
32   };