verbiste: don't build gtk2 app

GTK2 is being removed from Nixpkgs, so we avoid building the graphical
application interface while retaining the command line.
This commit is contained in:
whispers
2026-07-29 21:44:07 -04:00
parent 59785fbed1
commit 82cc71b605
+3 -5
View File
@@ -3,7 +3,6 @@
stdenv,
fetchurl,
pkg-config,
gtk2,
libxml2,
}:
@@ -18,10 +17,9 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [ pkg-config ];
buildInputs = [
gtk2
libxml2
];
buildInputs = [ libxml2 ];
configureFlags = [ "--without-gtk-app" ];
enableParallelBuilding = true;