From 0c5b457a326f5a54d75c3a1f78a49b3e35086ff0 Mon Sep 17 00:00:00 2001 From: Florian Brandes Date: Fri, 10 Jan 2025 11:00:42 +0100 Subject: [PATCH 1/2] remmina: fix darwin build for newer clang Signed-off-by: Florian Brandes --- pkgs/applications/networking/remote/remmina/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/remote/remmina/default.nix b/pkgs/applications/networking/remote/remmina/default.nix index 394bccb19fe1..db64db740d4f 100644 --- a/pkgs/applications/networking/remote/remmina/default.nix +++ b/pkgs/applications/networking/remote/remmina/default.nix @@ -8,7 +8,6 @@ wrapGAppsHook3, curl, fuse3, - fetchpatch2, desktopToDarwinBundle, glib, gtk3, @@ -109,6 +108,8 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optionals withWebkitGtk [ webkitgtk_4_1 ] ++ lib.optionals withVte [ vte ]; + env.NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types"; + cmakeFlags = [ "-DWITH_FREERDP3=ON" From dc3d1eddc1cc098529af0b2fac0bc430232efc2c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 5 Feb 2025 07:34:30 +0000 Subject: [PATCH 2/2] ncspot: 1.2.1 -> 1.2.2 --- pkgs/by-name/nc/ncspot/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/nc/ncspot/package.nix b/pkgs/by-name/nc/ncspot/package.nix index 49fe958b8538..aebe5ee0626f 100644 --- a/pkgs/by-name/nc/ncspot/package.nix +++ b/pkgs/by-name/nc/ncspot/package.nix @@ -34,16 +34,16 @@ rustPlatform.buildRustPackage rec { pname = "ncspot"; - version = "1.2.1"; + version = "1.2.2"; src = fetchFromGitHub { owner = "hrkfdn"; repo = "ncspot"; tag = "v${version}"; - hash = "sha256-h3Mp67AKuzzeO6l7jN6yrQAHpYSsaOp1Y+qJoamK82U="; + hash = "sha256-4zeBTi1WBy9tXowsehUo4qou6bhznWPeCXFg+R3akho="; }; - cargoHash = "sha256-uWnW4Ov5MoDh3xkmTsNSin9WI0SJAoDGa+n8IMNvo4Y="; + cargoHash = "sha256-afyO4JMhqGW4GQW8n+M6cgKkOr7//A1bNv28xGHyYTE="; nativeBuildInputs = [ pkg-config ] ++ lib.optional withClipboard python3;