nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

clipit: fix build on gcc14

+15
+15
pkgs/by-name/cl/clipit/package.nix
··· 1 1 { 2 2 fetchFromGitHub, 3 + fetchpatch, 3 4 lib, 4 5 stdenv, 5 6 autoreconfHook, ··· 28 27 intltoolize --copy --force --automake 29 28 ''; 30 29 30 + patches = [ 31 + # Fixes for GCC14 32 + (fetchpatch { 33 + url = "https://salsa.debian.org/debian/clipit/-/raw/d4bafc28fcb445d1940cdfede6c70142cf3162f5/debian/patches/incompatible-pointer-types.patch"; 34 + hash = "sha256-STI1fpnoPdEqu1embQcUlTG712HPbJ+LPm930P13Ixo="; 35 + }) 36 + (fetchpatch { 37 + url = "https://salsa.debian.org/debian/clipit/-/raw/656d0814030c13437b10d40ee75615d0e8cd873e/debian/patches/missing-prototypes.patch"; 38 + hash = "sha256-UD183IjV5BprPHQK9bhmUBKfUYgqEZ9M1cRE+AmhAPA="; 39 + }) 40 + ]; 41 + 31 42 nativeBuildInputs = [ 32 43 pkg-config 33 44 wrapGAppsHook3 34 45 autoreconfHook 35 46 intltool 36 47 ]; 48 + 37 49 configureFlags = [ 38 50 "--with-gtk3" 39 51 "--enable-appindicator=yes" 40 52 ]; 53 + 41 54 buildInputs = [ 42 55 gtk3 43 56 libayatana-appindicator