verbiste: 0.1.47 → 0.1.48

No longer builds the GNOME 2 GUI by default but there is still GTK 2.
This commit is contained in:
Jan Tojnar
2024-06-27 11:14:02 +02:00
parent d406dc972e
commit 82c87b3a53
2 changed files with 6 additions and 8 deletions

View File

@@ -1,18 +1,18 @@
{ lib, stdenv, fetchurl, pkg-config, libgnomeui, libxml2 }:
{ lib, stdenv, fetchurl, pkg-config, gtk2, libxml2 }:
stdenv.mkDerivation rec {
pname = "verbiste";
version = "0.1.47";
version = "0.1.48";
src = fetchurl {
url = "https://perso.b2b2c.ca/~sarrazip/dev/${pname}-${version}.tar.gz";
sha256 = "02kzin3pky2q2jnihrch8y0hy043kqqmzxq8j741x80kl0j1qxkm";
url = "https://perso.b2b2c.ca/~sarrazip/dev/verbiste-${version}.tar.gz";
hash = "sha256-qp0OFpH4DInWjzraDI6+CeKh85JkbwVYHlJruIrGnBM=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libgnomeui libxml2 ];
buildInputs = [ gtk2 libxml2 ];
enableParallelBuilding = true;

View File

@@ -34885,9 +34885,7 @@ with pkgs;
inherit (darwin.apple_sdk_11_0.frameworks) Carbon CoreServices OpenCL;
};
verbiste = callPackage ../applications/misc/verbiste {
inherit (gnome2) libgnomeui;
};
verbiste = callPackage ../applications/misc/verbiste { };
veusz = libsForQt5.callPackage ../applications/graphics/veusz { };