Merge pull request #250774 from R-VdP/fwupd_1_9_4

fwupd: 1.9.3 -> 1.9.4

Changed files
+9 -6
maintainers
pkgs
os-specific
linux
firmware
fwupd
+6
maintainers/maintainer-list.nix
···
githubId = 7365864;
name = "Rafael Varago";
+
rvdp = {
+
email = "ramses@well-founded.dev";
+
github = "R-VdP";
+
githubId = 141248;
+
name = "Ramses";
+
};
rvl = {
email = "dev+nix@rodney.id.au";
github = "rvl";
+3 -6
pkgs/os-specific/linux/firmware/fwupd/default.nix
···
in
stdenv.mkDerivation (finalAttrs: {
pname = "fwupd";
-
version = "1.9.3";
+
version = "1.9.4";
# libfwupd goes to lib
# daemon, plug-ins and libfwupdplugin go to out
···
owner = "fwupd";
repo = "fwupd";
rev = finalAttrs.version;
-
hash = "sha256-IVP5RVHRxWkvPqndiuCxiguYWN5d32qJo9YzBOHoyUk";
+
hash = "sha256-xjN6nHqg7sQzgojClySQEjLQBdI5291TxPhgLjKzKvk=";
};
patches = [
···
"-Dplugin_dummy=true"
# We are building the official releases.
"-Dsupported_build=enabled"
-
# Would dlopen libsoup to preserve compatibility with clients linking against older fwupd.
-
# https://github.com/fwupd/fwupd/commit/173d389fa59d8db152a5b9da7cc1171586639c97
-
"-Dsoup_session_compat=false"
"-Dudevdir=lib/udev"
"-Dsystemd_root_prefix=${placeholder "out"}"
"-Dinstalled_test_prefix=${placeholder "installedTests"}"
···
meta = with lib; {
homepage = "https://fwupd.org/";
-
maintainers = with maintainers; [ ];
+
maintainers = with maintainers; [ rvdp ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
};