571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
38 lines
973 B
Nix
38 lines
973 B
Nix
{ stdenv, lib, fetchurl }:
|
|
|
|
let
|
|
|
|
rootHints = fetchurl {
|
|
# Original source https://www.internic.net/domain/named.root
|
|
# occasionally suffers from pointless hash changes,
|
|
# and having stable sources for older versions has advantages, too.
|
|
urls = map (prefix: prefix + "d9c96ae96f066a85d7/etc/root.hints") [
|
|
"https://gitlab.nic.cz/knot/knot-resolver/raw/"
|
|
"https://raw.githubusercontent.com/CZ-NIC/knot-resolver/"
|
|
];
|
|
hash = "sha256-4lG/uPnNHBNIZ/XIeDM1w3iukrpeW0JIjTnGSwkJ8U4=";
|
|
};
|
|
|
|
rootKey = ./root.key;
|
|
rootDs = ./root.ds;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dns-root-data";
|
|
version = "2024-06-20";
|
|
|
|
buildCommand = ''
|
|
mkdir $out
|
|
cp ${rootHints} $out/root.hints
|
|
cp ${rootKey} $out/root.key
|
|
cp ${rootDs} $out/root.ds
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "DNS root data including root zone and DNSSEC key";
|
|
maintainers = with maintainers; [ fpletz vcunat ];
|
|
license = licenses.gpl3Plus;
|
|
};
|
|
}
|