mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 13:19:10 +03:00
aardvark-dns: fix test instead of skipping it
This commit is contained in:
parent
63ba1040fd
commit
3bcd7865cf
@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, nixosTests
|
||||
}:
|
||||
|
||||
@ -17,9 +18,11 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoHash = "sha256-rrn+ZTAsFs7UTP4xQL3Cy8G6RG7vwT0wMKnXHHIkB90=";
|
||||
|
||||
checkFlags = [
|
||||
# https://github.com/containers/aardvark-dns/issues/379
|
||||
"--skip=test::test::tests::test_backend_network_scoped_custom_dns_server"
|
||||
patches = [
|
||||
(fetchpatch { # https://github.com/containers/aardvark-dns/issues/379
|
||||
url = "https://github.com/containers/aardvark-dns/commit/b13f0434f410934b515f086334414c6f5f55096e.diff";
|
||||
hash = "sha256-6XReIShEe8+WKc5jK5NzCNMEd4INdOn9Sf8UrQLbj+s=";
|
||||
})
|
||||
];
|
||||
|
||||
passthru.tests = { inherit (nixosTests) podman; };
|
||||
|
Loading…
Reference in New Issue
Block a user