Merge pull request #277243 from mfrw/mfrw/iwd-2.12

iwd: 2.11 -> 2.12
This commit is contained in:
maxine 2024-01-02 18:11:29 +01:00 committed by GitHub
commit b74ab8eac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,5 @@
{ lib, stdenv
, fetchgit
, fetchpatch
, autoreconfHook
, pkg-config
, ell
@ -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";