mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 21:53:32 +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.
51 lines
887 B
Nix
51 lines
887 B
Nix
{ buildDunePackage, dns, dns-tsig, dns-client, dns-server, dns-certify, dnssec
|
|
, bos, cmdliner, fpath, x509, mirage-crypto, mirage-crypto-pk
|
|
, mirage-crypto-rng, hex, ptime, mtime, logs, fmt, ipaddr, lwt
|
|
, randomconv, alcotest
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "dns-cli";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
inherit (dns) version src;
|
|
duneVersion = "3";
|
|
|
|
# no need to propagate as this is primarily
|
|
# an executable package
|
|
buildInputs = [
|
|
dns
|
|
dns-tsig
|
|
dns-client
|
|
dns-server
|
|
dns-certify
|
|
dnssec
|
|
bos
|
|
cmdliner
|
|
fpath
|
|
x509
|
|
mirage-crypto
|
|
mirage-crypto-pk
|
|
mirage-crypto-rng
|
|
hex
|
|
ptime
|
|
mtime
|
|
logs
|
|
fmt
|
|
ipaddr
|
|
lwt
|
|
randomconv
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [
|
|
alcotest
|
|
];
|
|
|
|
meta = dns.meta // {
|
|
description = "Unix command line utilities using uDNS";
|
|
mainProgram = "odns";
|
|
};
|
|
}
|