mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 04:23:47 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
24 lines
358 B
Nix
24 lines
358 B
Nix
{ buildDunePackage, dns, mirage-crypto, base64, alcotest }:
|
|
|
|
buildDunePackage {
|
|
pname = "dns-tsig";
|
|
|
|
inherit (dns) version src;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
mirage-crypto
|
|
dns
|
|
base64
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [
|
|
alcotest
|
|
];
|
|
|
|
meta = dns.meta // {
|
|
description = "TSIG support for DNS";
|
|
};
|
|
}
|