nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at fix-function-merge 19 lines 340 B view raw
1{ 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 = "Library for manipulation of MAC address representations using Cstructs"; 18 }; 19}