Merge branch 'master' into closure-size

TODO: there was more significant refactoring of qtbase and plasma 5.5
on master, and I'm deferring pointing to correct outputs to later.
This commit is contained in:
Vladimír Čunát
2015-12-31 09:47:26 +01:00
951 changed files with 117997 additions and 19014 deletions

View File

@@ -0,0 +1,28 @@
{ stdenv, fetchgit }:
let version = "2015-12-14"; in
stdenv.mkDerivation {
name = "wireless-regdb-${version}";
src = fetchgit {
sha256 = "1ldfcxn3mdb104czy78b7nj1clsbfp8fc6mshix98zq0bg4k7rsm";
url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git;
rev = "refs/tags/master-${version}";
};
phases = [ "unpackPhase" "installPhase" ];
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
meta = with stdenv.lib; {
inherit version;
description = "Wireless regulatory database for CRDA";
homepage = https://git.kernel.org/cgit/linux/kernel/git/sforshee/wireless-regdb.git/;
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ nckx ];
};
}