kind2: 0.2.77 -> 0.2.79

figsoda ab62aac6 fcb66481

+24 -5
+21 -4
pkgs/development/compilers/kind2/default.nix
··· 1 - { lib, rustPlatform, fetchCrate }: 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + , pkg-config 5 + , openssl 6 + , stdenv 7 + , Security 8 + }: 2 9 3 10 rustPlatform.buildRustPackage rec { 4 11 pname = "kind2"; 5 - version = "0.2.77"; 12 + version = "0.2.79"; 6 13 7 14 src = fetchCrate { 8 15 inherit pname version; 9 - sha256 = "sha256-drWAWiSALq8rb3J2phNE/dt4e6xmJY7Ob8cES1kYEPo="; 16 + sha256 = "sha256-QRPk7BpGVvhGHcDxCWJtJp5d3QOq72ESt5VbaSq5jBU="; 10 17 }; 11 18 12 - cargoSha256 = "sha256-rF0TvNWE90sUqslBGPnGmD6mZFPlCCkM1jyuFt8n8Nw="; 19 + cargoSha256 = "sha256-i7RAJmhUQzjMe9w7z7hPrpiap64L12Shu4DL+e5A6oc="; 20 + 21 + nativeBuildInputs = [ pkg-config ]; 22 + 23 + buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security; 24 + 25 + # these tests are flaky 26 + checkFlags = [ 27 + "--skip=test_checker" 28 + "--skip=test_run_hvm" 29 + ]; 13 30 14 31 meta = with lib; { 15 32 description = "A functional programming language and proof assistant";
+3 -1
pkgs/top-level/all-packages.nix
··· 14350 14350 14351 14351 jwasm = callPackage ../development/compilers/jwasm { }; 14352 14352 14353 - kind2 = callPackage ../development/compilers/kind2 { }; 14353 + kind2 = callPackage ../development/compilers/kind2 { 14354 + inherit (darwin.apple_sdk.frameworks) Security; 14355 + }; 14354 14356 14355 14357 knightos-genkfs = callPackage ../development/tools/knightos/genkfs { }; 14356 14358