tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kind2: 0.2.77 -> 0.2.79
figsoda
3 years ago
ab62aac6
fcb66481
+24
-5
2 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
kind2
default.nix
top-level
all-packages.nix
+21
-4
pkgs/development/compilers/kind2/default.nix
···
1
1
-
{ lib, rustPlatform, fetchCrate }:
1
1
+
{ lib
2
2
+
, rustPlatform
3
3
+
, fetchCrate
4
4
+
, pkg-config
5
5
+
, openssl
6
6
+
, stdenv
7
7
+
, Security
8
8
+
}:
2
9
3
10
rustPlatform.buildRustPackage rec {
4
11
pname = "kind2";
5
5
-
version = "0.2.77";
12
12
+
version = "0.2.79";
6
13
7
14
src = fetchCrate {
8
15
inherit pname version;
9
9
-
sha256 = "sha256-drWAWiSALq8rb3J2phNE/dt4e6xmJY7Ob8cES1kYEPo=";
16
16
+
sha256 = "sha256-QRPk7BpGVvhGHcDxCWJtJp5d3QOq72ESt5VbaSq5jBU=";
10
17
};
11
18
12
12
-
cargoSha256 = "sha256-rF0TvNWE90sUqslBGPnGmD6mZFPlCCkM1jyuFt8n8Nw=";
19
19
+
cargoSha256 = "sha256-i7RAJmhUQzjMe9w7z7hPrpiap64L12Shu4DL+e5A6oc=";
20
20
+
21
21
+
nativeBuildInputs = [ pkg-config ];
22
22
+
23
23
+
buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
24
24
+
25
25
+
# these tests are flaky
26
26
+
checkFlags = [
27
27
+
"--skip=test_checker"
28
28
+
"--skip=test_run_hvm"
29
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
14353
-
kind2 = callPackage ../development/compilers/kind2 { };
14353
14353
+
kind2 = callPackage ../development/compilers/kind2 {
14354
14354
+
inherit (darwin.apple_sdk.frameworks) Security;
14355
14355
+
};
14354
14356
14355
14357
knightos-genkfs = callPackage ../development/tools/knightos/genkfs { };
14356
14358