nixpkgs/pkgs/applications/terminal-emulators/gnome-console/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

83 lines
1.6 KiB
Nix
Raw Normal View History

2021-03-13 20:41:38 +01:00
{ lib
, stdenv
, fetchurl
, fetchpatch
2021-03-13 20:41:38 +01:00
, gettext
, gnome
, libgtop
, gtk3
, libhandy
2021-03-13 20:41:38 +01:00
, pcre2
, vte
2021-03-13 20:41:38 +01:00
, appstream-glib
, desktop-file-utils
, git
2021-03-13 20:41:38 +01:00
, meson
, ninja
, pkg-config
, python3
, sassc
, wrapGAppsHook
, nixosTests
2021-03-13 20:41:38 +01:00
}:
stdenv.mkDerivation rec {
pname = "gnome-console";
# Do not upgrade until https://gitlab.gnome.org/GNOME/vte/-/issues/2584 is resolved!
version = "42.2";
2021-03-13 20:41:38 +01:00
src = fetchurl {
url = "mirror://gnome/sources/gnome-console/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "fSbmwYdExXWnhykyY/YM7/YwEHCY6eWKd2WwCsdDcEk=";
2021-03-13 20:41:38 +01:00
};
patches = [
(fetchpatch {
name = "fix-clang-build-issues.patch";
url = "https://gitlab.gnome.org/GNOME/console/-/commit/0e29a417d52e27da62f5cac461400be6a764dc65.patch";
sha256 = "sha256-5ORNZOxjC5dMk9VKaBcJu5OV1SEZo9SNUbN4Ob5hVJs=";
})
];
2021-03-13 20:41:38 +01:00
buildInputs = [
gettext
libgtop
gtk3
libhandy
2021-03-13 20:41:38 +01:00
pcre2
vte
2021-03-13 20:41:38 +01:00
];
nativeBuildInputs = [
appstream-glib
desktop-file-utils
git
2021-03-13 20:41:38 +01:00
meson
ninja
pkg-config
python3
sassc
wrapGAppsHook
];
mesonFlags = [
"-Dnautilus=disabled"
2022-08-01 14:48:13 +02:00
];
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
};
};
2021-03-13 20:41:38 +01:00
passthru.tests.test = nixosTests.terminal-emulators.kgx;
2021-03-13 20:41:38 +01:00
meta = with lib; {
description = "Simple user-friendly terminal emulator for the GNOME desktop";
homepage = "https://gitlab.gnome.org/GNOME/console";
2021-03-13 20:41:38 +01:00
license = licenses.gpl3Plus;
maintainers = teams.gnome.members ++ (with maintainers; [ zhaofengli ]);
2022-08-01 14:48:13 +02:00
platforms = platforms.unix;
2021-03-13 20:41:38 +01:00
};
}