Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildDunePackage, 3 tar, 4 lwt, 5 git, 6}: 7 8buildDunePackage { 9 pname = "tar-unix"; 10 inherit (tar) version src doCheck; 11 12 propagatedBuildInputs = [ 13 tar 14 lwt 15 ]; 16 17 nativeCheckInputs = [ 18 git 19 ]; 20 21 meta = tar.meta // { 22 description = "Decode and encode tar format files from Unix"; 23 }; 24}