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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
739 B
Nix
Raw Normal View History

{ lib, stdenvNoCC, fetchurl, directoryListingUpdater }:
2015-12-27 18:59:07 +01:00
stdenvNoCC.mkDerivation rec {
pname = "wireless-regdb";
version = "2024.05.08";
2015-12-27 18:59:07 +01:00
src = fetchurl {
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
hash = "sha256-mu4dhuvrs2O3FL7JQbKCDzHjt/Gkhd3J/L2ZhcfT58Q=";
2015-12-27 18:59:07 +01:00
};
dontBuild = true;
2015-12-27 18:59:07 +01:00
makeFlags = [
"DESTDIR=${placeholder "out"}"
2015-12-27 18:59:07 +01:00
"PREFIX="
];
passthru.updateScript = directoryListingUpdater { };
meta = with lib; {
2015-12-27 18:59:07 +01:00
description = "Wireless regulatory database for CRDA";
homepage = "http://wireless.kernel.org/en/developers/Regulatory/";
license = licenses.isc;
2015-12-27 18:59:07 +01:00
platforms = platforms.all;
maintainers = with maintainers; [ fpletz ];
2015-12-27 18:59:07 +01:00
};
}