lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 25.11-pre 26 lines 341 B view raw
1{ 2 buildDunePackage, 3 tar, 4 cstruct-lwt, 5 lwt, 6 git, 7}: 8 9buildDunePackage { 10 pname = "tar-unix"; 11 inherit (tar) version src doCheck; 12 13 propagatedBuildInputs = [ 14 tar 15 cstruct-lwt 16 lwt 17 ]; 18 19 nativeCheckInputs = [ 20 git 21 ]; 22 23 meta = tar.meta // { 24 description = "Decode and encode tar format files from Unix"; 25 }; 26}