zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-net / default.nix
blobef8aefa2db53159fda17e08e534cfacc074fc287
2   lib,
3   fetchurl,
4   buildDunePackage,
5   cstruct,
6   fmt,
7   lwt,
8   macaddr,
9   mirage-device,
12 buildDunePackage rec {
13   pname = "mirage-net";
14   version = "4.0.0";
16   duneVersion = "3";
18   src = fetchurl {
19     url = "https://github.com/mirage/mirage-net/releases/download/v${version}/mirage-net-v${version}.tbz";
20     hash = "sha256-Zo7/0Ye4GgqzJFCHDBXbuJ/5ETl/8ziolRgH4lDhlM4=";
21   };
23   propagatedBuildInputs = [
24     cstruct
25     fmt
26     lwt
27     macaddr
28     mirage-device
29   ];
31   meta = {
32     description = "Network signatures for MirageOS";
33     homepage = "https://github.com/mirage/mirage-net";
34     license = lib.licenses.isc;
35     maintainers = [ lib.maintainers.vbgl ];
36   };