nixpkgs/pkgs/data/misc/wireless-regdb/default.nix

27 lines
652 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-12-27 17:59:07 +00:00
stdenv.mkDerivation rec {
pname = "wireless-regdb";
version = "2021.08.28";
2015-12-27 17:59:07 +00:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
sha256 = "sha256-z/NwxBDR5tMWrgp/qKxieP3x78pdPWZKynz9Kq+lREY=";
2015-12-27 17:59:07 +00:00
};
dontBuild = true;
2015-12-27 17:59:07 +00:00
makeFlags = [
"DESTDIR=${placeholder "out"}"
2015-12-27 17:59:07 +00:00
"PREFIX="
];
meta = with lib; {
2015-12-27 17:59:07 +00:00
description = "Wireless regulatory database for CRDA";
homepage = "http://wireless.kernel.org/en/developers/Regulatory/";
license = licenses.isc;
2015-12-27 17:59:07 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ fpletz ];
2015-12-27 17:59:07 +00:00
};
}