Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 19 lines 347 B view raw
1{ lib, buildDunePackage 2, macaddr, cstruct 3}: 4 5buildDunePackage { 6 pname = "macaddr-cstruct"; 7 8 inherit (macaddr) version src; 9 10 duneVersion = "3"; 11 12 propagatedBuildInputs = [ macaddr cstruct ]; 13 14 doCheck = true; 15 16 meta = macaddr.meta // { 17 description = "A library for manipulation of MAC address representations using Cstructs"; 18 }; 19}