nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.mirage-stack: 2.2.0 → 4.0.0

authored by

Vincent Laporte and committed by
Vincent Laporte
7fa20e70 9550348c

+5 -5
+5 -5
pkgs/development/ocaml-modules/mirage-stack/default.nix
··· 1 - { lib, buildDunePackage, fetchurl, mirage-protocols }: 1 + { lib, buildDunePackage, fetchurl, tcpip }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "mirage-stack"; 5 - version = "2.2.0"; 6 - useDune2 = true; 5 + version = "4.0.0"; 6 + duneVersion = "3"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/mirage/mirage-stack/releases/download/v${version}/mirage-stack-v${version}.tbz"; 10 - sha256 = "1qhi0ghcj4j3hw7yqn085ac6n18b6b66z5ih3k8p79m4cvn7cdq0"; 10 + hash = "sha256-q70zGQvT5KTqvL37bZjSD8Su0P72KCUesyfWJcI8zPw="; 11 11 }; 12 12 13 - propagatedBuildInputs = [ mirage-protocols ]; 13 + propagatedBuildInputs = [ tcpip ]; 14 14 15 15 meta = { 16 16 description = "MirageOS signatures for network stacks";