Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f907218f5363
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32214c25d493
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 7, 2019

  1. Copy the full SHA
    bdc2080 View commit details

Commits on Mar 8, 2019

  1. Merge pull request #57049 from dtzWill/update/wireless-regdb-2019.03.01

    wireless-regdb: 2018.10.24 -> 2019.03.01
    Mic92 authored Mar 8, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    32214c2 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/data/misc/wireless-regdb/default.nix
10 changes: 5 additions & 5 deletions pkgs/data/misc/wireless-regdb/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "wireless-regdb-${version}";
version = "2018.10.24";
pname = "wireless-regdb";
version = "2019.03.01";

src = fetchurl {
url = "https://www.kernel.org/pub/software/network/wireless-regdb/${name}.tar.xz";
sha256 = "05lixkdzy7f3wpan6svh1n9f70rs0kfw6hl6p34sl8bxqxd88ghd";
url = "https://www.kernel.org/pub/software/network/${pname}/${pname}-${version}.tar.xz";
sha256 = "0pwipig8bik1gca440hfv0xa23bi49jfiqc69xvcb6sr0rq6ykis";
};

dontBuild = true;

makeFlags = [
"DESTDIR=$(out)"
"DESTDIR=${placeholder "out"}"
"PREFIX="
];