···33with lib;
4455buildLinux (args // rec {
66- version = "6.4.2";
66+ version = "6.4.3";
7788 # modDirVersion needs to be x.y.z, will automatically add .0 if needed
99 modDirVersion = versions.pad 3 version;
···13131414 src = fetchurl {
1515 url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
1616- sha256 = "0b0623pvf9spb5biv1k4wzjbcj9fyf2svk69fdyb3ibn84ian9m3";
1616+ sha256 = "18c8ikghvlr6h9jajy11dldck4h57wl301j14rxg7xhd6qlysd3i";
1717 };
1818} // (args.argsOverride or { }))
+4-4
pkgs/os-specific/linux/kernel/xanmod-kernels.nix
···33let
44 # These names are how they are designated in https://xanmod.org.
55 ltsVariant = {
66- version = "6.1.35";
77- hash = "sha256-CfrM2CNaGUTfkVteudL8xnAuCdZJxD5pUEC1YW9LiuU=";
66+ version = "6.1.37";
77+ hash = "sha256-g8cmAhsM03jBu7UZoNOLBX7cGg8rz70/xhF7sJj9nCY=";
88 variant = "lts";
99 };
10101111 mainVariant = {
1212- version = "6.3.9";
1313- hash = "sha256-t1fKPZ+giANPmhM4zGoGtYWJF6rDnbpJaoHILl3nyRI=";
1212+ version = "6.4.1";
1313+ hash = "sha256-WPnINDkOj0IoUDLBG/2LOrppVi9o9XSSgMrs/NBbqdA=";
1414 variant = "main";
1515 };
1616
+17-1
pkgs/servers/shairport-sync/default.nix
···4949 hash = "sha256-ru2iaXSgS+w2ktqGLGC9SiYztkmmOQVzHaeLwMqvMzk=";
5050 };
51515252- nativeBuildInputs = [ autoreconfHook pkg-config ];
5252+ nativeBuildInputs = [
5353+ autoreconfHook
5454+ pkg-config
5555+ # For glib we want the `dev` output for the same library we are
5656+ # also linking against, since pkgsHostTarget.glib.dev exposes
5757+ # some extra tools that are built for build->host execution.
5858+ # To achieve this, we coerce the output to a string to prevent
5959+ # mkDerivation's splicing logic from kicking in.
6060+ "${glib.dev}"
6161+ ];
6262+6363+ makeFlags = [
6464+ # Workaround for https://github.com/mikebrady/shairport-sync/issues/1705
6565+ "AR=${stdenv.cc.bintools.targetPrefix}ar"
6666+ ];
53675468 buildInputs = [
5569 openssl
···99113 ++ optional enableMpris "--with-mpris-interface"
100114 ++ optional enableLibdaemon "--with-libdaemon"
101115 ++ optional enableAirplay2 "--with-airplay-2";
116116+117117+ strictDeps = true;
102118103119 meta = with lib; {
104120 homepage = "https://github.com/mikebrady/shairport-sync";
···150150 IMAPClient = imapclient; # added 2021-10-28
151151 imdbpy = throw "imdbpy has been renamed to cinemagoer"; # added 2022-08-08
152152 image-match = throw "image-match has been removed because it is no longer maintained"; # added 2023-06-10
153153+ imgaug = throw "imgaug has been removed as it is no longer maintained"; # added 2023-07-10
153154 intreehook = throw "intreehooks has been removed because it is obsolete as a backend-path key was added to PEP 517"; # added 2023-04-11
154155 ipaddress = throw "ipaddress has been removed because it is no longer required since python 2.7."; # added 2022-05-30
155156 influxgraph = throw "influxgraph has been removed because it is no longer maintained"; # added 2022-07-10
···172173 Mako = mako; # added 2023-02-19
173174 Markups = markups; # added 2022-02-14
174175 markdownsuperscript = throw "markdownsuperscript is unmaintained, use pymdown-extensions"; # added 2023-06-10
176176+ mask-rcnn = throw "mask-rcnn has been removed as it is unmaintained and its dependency imgaug no longer builds"; # added 2023-07-10
175177 MDP = mdp; # added 2023-02-19
176178 MechanicalSoup = mechanicalsoup; # added 2021-06-01
177179 memcached = python-memcached; # added 2022-05-06