nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 22 lines 321 B view raw
1{ lib 2, buildDunePackage 3, tar 4, cstruct-lwt 5, lwt 6}: 7 8buildDunePackage rec { 9 pname = "tar-unix"; 10 inherit (tar) version src doCheck; 11 duneVersion = "3"; 12 13 propagatedBuildInputs = [ 14 tar 15 cstruct-lwt 16 lwt 17 ]; 18 19 meta = tar.meta // { 20 description = "Decode and encode tar format files from Unix"; 21 }; 22}