5956939f35
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wireless-regdb/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/6eb5b27b95c943023d5aa76dab9d870e
26 lines
643 B
Nix
26 lines
643 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wireless-regdb-${version}";
|
|
version = "2018.05.09";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.kernel.org/pub/software/network/wireless-regdb/${name}.tar.xz";
|
|
sha256 = "0db4p8m194cjydrv9q7ygx62v202sighb9pizbn8a29anvm0cmzd";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"PREFIX="
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Wireless regulatory database for CRDA";
|
|
homepage = http://wireless.kernel.org/en/developers/Regulatory/;
|
|
license = licenses.isc;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
};
|
|
}
|