Merge pull request #111040 from tu-maurice/unstable/xed-editor-2.8.4
xed-editor: Init at 2.8.4
This commit is contained in:
commit
8e1b81959e
71
pkgs/applications/editors/xed-editor/default.nix
Normal file
71
pkgs/applications/editors/xed-editor/default.nix
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, libxml2
|
||||||
|
, libpeas
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, gtksourceview4
|
||||||
|
, gspell
|
||||||
|
, xapps
|
||||||
|
, pkg-config
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, wrapGAppsHook
|
||||||
|
, intltool
|
||||||
|
, itstool }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "xed-editor";
|
||||||
|
version = "2.8.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "linuxmint";
|
||||||
|
repo = "xed";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1hqr4157kp110p01jygqnnzj86zxlfiq4b53j345vqpx0f80c340";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
intltool
|
||||||
|
itstool
|
||||||
|
ninja
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxml2
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
gtksourceview4
|
||||||
|
libpeas
|
||||||
|
gspell
|
||||||
|
xapps
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
glib-compile-schemas $out/share/glib-2.0/schemas
|
||||||
|
'';
|
||||||
|
|
||||||
|
doInstallCheck = true;
|
||||||
|
installCheckPhase = ''
|
||||||
|
if [[ "$($out/bin/xed --version)" == "xed - Version ${version}" ]] ; then
|
||||||
|
echo "${pname} smoke test passed"
|
||||||
|
else
|
||||||
|
echo "${pname} smoke test failed"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -26143,6 +26143,10 @@ in
|
|||||||
|
|
||||||
xdotool = callPackage ../tools/X11/xdotool { };
|
xdotool = callPackage ../tools/X11/xdotool { };
|
||||||
|
|
||||||
|
xed-editor = callPackage ../applications/editors/xed-editor {
|
||||||
|
xapps = cinnamon.xapps;
|
||||||
|
};
|
||||||
|
|
||||||
xenPackages = recurseIntoAttrs (callPackage ../applications/virtualization/xen/packages.nix {});
|
xenPackages = recurseIntoAttrs (callPackage ../applications/virtualization/xen/packages.nix {});
|
||||||
|
|
||||||
xen = xenPackages.xen-vanilla;
|
xen = xenPackages.xen-vanilla;
|
||||||
|
Loading…
Reference in New Issue
Block a user