Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, fetchurl, tcpip }:
2
3buildDunePackage rec {
4 pname = "mirage-stack";
5 version = "4.0.0";
6 duneVersion = "3";
7
8 src = fetchurl {
9 url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz";
10 hash = "sha256-q70zGQvT5KTqvL37bZjSD8Su0P72KCUesyfWJcI8zPw=";
11 };
12
13 propagatedBuildInputs = [ tcpip ];
14
15 meta = {
16 description = "MirageOS signatures for network stacks";
17 homepage = "https://github.com/mirage/mirage-stack";
18 license = lib.licenses.isc;
19 maintainers = [ lib.maintainers.vbgl ];
20 };
21}
22