Skip to content

Commit

Permalink
Merge pull request NixOS#277243 from mfrw/mfrw/iwd-2.12
Browse files Browse the repository at this point in the history
iwd: 2.11 -> 2.12
  • Loading branch information
amaxine authored Jan 2, 2024
2 parents 4e44fb9 + 5d0619a commit b74ab8e
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions pkgs/os-specific/linux/iwd/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{ lib, stdenv
, fetchgit
, fetchpatch
, autoreconfHook
, pkg-config
, ell
Expand All @@ -14,23 +13,14 @@

stdenv.mkDerivation rec {
pname = "iwd";
version = "2.11";
version = "2.12";

src = fetchgit {
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git";
rev = version;
hash = "sha256-kE9GBVTKNpgEuE9jQ7k85OhEAN3VWgjmAgifvZfq46I=";
hash = "sha256-XlhzPEXYGmJvQ6ZfPK1nxbHibXLdNsDKhZ0UAIRmN6U=";
};

patches = [
# Fix unit/test-dpp on aarch64.
(fetchpatch {
name = "size_t-vararg.patch";
url = "https://git.kernel.org/pub/scm/network/wireless/iwd.git/patch/?id=688d27700833258a139a6fbd5661334bd2c9fa98";
hash = "sha256-g3gG1c25o6ODFfHL4a0HcnNJBBOKRbdo+ZuVbzoxCLs=";
})
];

outputs = [ "out" "man" "doc" ]
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "test";

Expand Down

0 comments on commit b74ab8e

Please sign in to comment.