tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
libressl: 3.7.3 -> 3.8.2
Adrian Pistol
2 years ago
7cc9c608
81baa4d3
+8
-2
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
libressl
default.nix
top-level
all-packages.nix
+5
pkgs/development/libraries/libressl/default.nix
···
100
version = "3.7.3";
101
hash = "sha256-eUjIVqkMglvXJotvhWdKjc0lS65C4iF4GyTj+NwzXbM=";
102
};
0
0
0
0
0
103
}
···
100
version = "3.7.3";
101
hash = "sha256-eUjIVqkMglvXJotvhWdKjc0lS65C4iF4GyTj+NwzXbM=";
102
};
103
+
104
+
libressl_3_8 = generic {
105
+
version = "3.8.2";
106
+
hash = "sha256-bUuNW7slofgzZjnlbsUIgFLUOpUlZpeoXEzpEyPCWVQ=";
107
+
};
108
}
+3
-2
pkgs/top-level/all-packages.nix
···
24429
24430
inherit (callPackages ../development/libraries/libressl { })
24431
libressl_3_6
24432
-
libressl_3_7;
0
24433
24434
-
libressl = libressl_3_7;
24435
24436
boringssl = callPackage ../development/libraries/boringssl { };
24437
···
24429
24430
inherit (callPackages ../development/libraries/libressl { })
24431
libressl_3_6
24432
+
libressl_3_7
24433
+
libressl_3_8;
24434
24435
+
libressl = libressl_3_8;
24436
24437
boringssl = callPackage ../development/libraries/boringssl { };
24438