1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

avml: use OpenSSL from Nixpkgs

This commit is contained in:
Alyssa Ross 2024-09-05 15:42:09 +02:00
parent bacecfa3b6
commit fc93b376c2
No known key found for this signature in database
GPG key ID: F9DBED4859B271C0

View file

@ -2,7 +2,8 @@
lib,
fetchFromGitHub,
rustPlatform,
perl,
pkg-config,
openssl,
testers,
avml,
nix-update-script,
@ -21,7 +22,12 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-gcpjrxnQDyO92OW6LZVc4x73TmTtQoaEYhmGmqhz8ng=";
nativeBuildInputs = [ perl ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
env = {
OPENSSL_NO_VENDOR = true;
};
passthru.tests.version = testers.testVersion { package = avml; };