74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
libxml2,
|
|
libpeas,
|
|
glib,
|
|
gtk3,
|
|
gtksourceview4,
|
|
gspell,
|
|
xapp,
|
|
pkg-config,
|
|
python3,
|
|
meson,
|
|
ninja,
|
|
versionCheckHook,
|
|
wrapGAppsHook3,
|
|
intltool,
|
|
itstool,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xed-editor";
|
|
version = "3.6.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = "xed";
|
|
rev = version;
|
|
hash = "sha256-QPP7LWAiyKt7YBX88qlLS7PucQODH/c/j5WAbO9SF6k=";
|
|
};
|
|
|
|
patches = [
|
|
# We patch gobject-introspection and meson to store absolute paths to libraries in typelibs
|
|
# but that requires the install_dir is an absolute path.
|
|
./correct-gir-lib-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
pkg-config
|
|
intltool
|
|
itstool
|
|
ninja
|
|
python3
|
|
versionCheckHook
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2
|
|
glib
|
|
gtk3
|
|
gtksourceview4
|
|
libpeas
|
|
gspell
|
|
xapp
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
versionCheckProgram = "${placeholder "out"}/bin/xed";
|
|
|
|
meta = with lib; {
|
|
description = "Light weight text editor from Linux Mint";
|
|
homepage = "https://github.com/linuxmint/xed";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
tu-maurice
|
|
bobby285271
|
|
];
|
|
mainProgram = "xed";
|
|
};
|
|
}
|