kgx: init at unstable-2021-03-13
This commit is contained in:
parent
12de0d4c91
commit
b67d19710c
|
@ -0,0 +1,75 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, genericBranding ? false
|
||||||
|
, fetchFromGitLab
|
||||||
|
, gettext
|
||||||
|
, gnome3
|
||||||
|
, gtk3
|
||||||
|
, libhandy
|
||||||
|
, pcre2
|
||||||
|
, vte
|
||||||
|
, appstream-glib
|
||||||
|
, desktop-file-utils
|
||||||
|
, git
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, python3
|
||||||
|
, sassc
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "kgx";
|
||||||
|
version = "unstable-2021-03-13";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.gnome.org";
|
||||||
|
owner = "ZanderBrown";
|
||||||
|
repo = "kgx";
|
||||||
|
rev = "105adb6a8d09418a3ce622442aef6ae623dee787";
|
||||||
|
sha256 = "0m34y0nbcfkyicb40iv0iqaq6f9r3f66w43lr803j3351nxqvcz2";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gettext
|
||||||
|
gnome3.libgtop
|
||||||
|
gnome3.nautilus
|
||||||
|
gtk3
|
||||||
|
libhandy
|
||||||
|
pcre2
|
||||||
|
vte
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
appstream-glib
|
||||||
|
desktop-file-utils
|
||||||
|
git
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
python3
|
||||||
|
sassc
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
mesonFlags = lib.optional genericBranding "-Dgeneric=true";
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
chmod +x build-aux/meson/postinstall.py
|
||||||
|
patchShebangs build-aux/meson/postinstall.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
substituteInPlace $out/share/applications/org.gnome.zbrown.KingsCross.desktop \
|
||||||
|
--replace "Exec=kgx" "Exec=$out/bin/kgx"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple user-friendly terminal emulator for the GNOME desktop";
|
||||||
|
homepage = "https://gitlab.gnome.org/ZanderBrown/kgx";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ zhaofengli ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -29098,6 +29098,8 @@ in
|
||||||
|
|
||||||
keynav = callPackage ../tools/X11/keynav { };
|
keynav = callPackage ../tools/X11/keynav { };
|
||||||
|
|
||||||
|
kgx = callPackage ../applications/terminal-emulators/kgx { };
|
||||||
|
|
||||||
kmon = callPackage ../tools/system/kmon { };
|
kmon = callPackage ../tools/system/kmon { };
|
||||||
|
|
||||||
kompose = callPackage ../applications/networking/cluster/kompose { };
|
kompose = callPackage ../applications/networking/cluster/kompose { };
|
||||||
|
|
Loading…
Reference in New Issue