nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib, buildDunePackage
2, macaddr, ounit
3}:
4
5buildDunePackage rec {
6 pname = "ipaddr";
7
8 inherit (macaddr) version src;
9
10 buildInputs = [ ounit ];
11
12 propagatedBuildInputs = [ macaddr ];
13
14 doCheck = true;
15
16 meta = with lib; {
17 homepage = https://github.com/mirage/ocaml-ipaddr;
18 description = "A library for manipulation of IP (and MAC) address representations ";
19 license = licenses.isc;
20 maintainers = with maintainers; [ alexfmpe ericbmerritt ];
21 };
22}