100 lines
1.9 KiB
Nix
100 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
atk,
|
|
cairo,
|
|
glib,
|
|
gtk3,
|
|
pango,
|
|
vala,
|
|
libxml2,
|
|
perl,
|
|
intltool,
|
|
gettext,
|
|
gobject-introspection,
|
|
dbus,
|
|
xvfb-run,
|
|
shared-mime-info,
|
|
testers,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gtksourceview";
|
|
version = "3.24.11";
|
|
|
|
src =
|
|
let
|
|
inherit (finalAttrs) pname version;
|
|
in
|
|
fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1zbpj283b5ycz767hqz5kdq02wzsga65pp4fykvhg8xj6x50f6v9";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
# Required by gtksourceview-3.0.pc
|
|
gtk3
|
|
# Used by gtk_source_language_manager_guess_language
|
|
shared-mime-info
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
intltool
|
|
perl
|
|
gobject-introspection
|
|
vala
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
xvfb-run
|
|
dbus
|
|
];
|
|
|
|
buildInputs = [
|
|
atk
|
|
cairo
|
|
glib
|
|
pango
|
|
libxml2
|
|
gettext
|
|
];
|
|
|
|
preBuild = ''
|
|
substituteInPlace gtksourceview/gtksourceview-utils.c --replace "@NIX_SHARE_PATH@" "$out/share"
|
|
'';
|
|
|
|
patches = [ ./3.x-nix_share_path.patch ];
|
|
|
|
env = lib.optionalAttrs stdenv.cc.isGNU {
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=incompatible-pointer-types";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = stdenv.hostPlatform.isLinux;
|
|
checkPhase = ''
|
|
NO_AT_BRIDGE=1 \
|
|
XDG_DATA_DIRS="$XDG_DATA_DIRS:${shared-mime-info}/share" \
|
|
xvfb-run -s '-screen 0 800x600x24' dbus-run-session \
|
|
--config-file=${dbus}/share/dbus-1/session.conf \
|
|
make check
|
|
'';
|
|
|
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/gtksourceview";
|
|
pkgConfigModules = [ "gtksourceview-3.0" ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = licenses.lgpl21;
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
})
|