69698ec11c
* gnome3: only maintain single GNOME 3 package set GNOME 3 was split into 3.10 and 3.12 in #2694. Unfortunately, we barely have the resources to update a single version of GNOME. Maintaining multiple versions just does not make sense. Additionally, it makes viewing history using most Git tools bothersome. This commit renames `pkgs/desktops/gnome-3/3.24` to `pkgs/desktops/gnome-3`, removes the config variable for choosing packageset (`environment.gnome3.packageSet`), updates the hint in maintainer script, and removes the `gnome3_24` derivation from `all-packages.nix`. Closes: #29329 * maintainers/scripts/gnome: Use fixed GNOME 3 directory Since we now allow only a single GNOME 3 package set, specifying the working directory is not necessary. This commit sets the directory to `pkgs/desktops/gnome-3`.
40 lines
1.4 KiB
Nix
40 lines
1.4 KiB
Nix
{ stdenv, fetchurl, fetchgit, vala_0_32, intltool, libgit2, pkgconfig, gtk3, glib
|
|
, json_glib, webkitgtk, wrapGAppsHook, libpeas, bash, gobjectIntrospection
|
|
, gnome3, gtkspell3, shared_mime_info, libgee, libgit2-glib, librsvg, libsecret
|
|
, dconf}:
|
|
|
|
|
|
# TODO: icons and theme still does not work
|
|
# use packaged gnome3.adwaita-icon-theme
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
preCheck = ''
|
|
substituteInPlace tests/libgitg/test-commit.c --replace "/bin/bash" "${bash}/bin/bash"
|
|
'';
|
|
doCheck = true;
|
|
|
|
makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0";
|
|
|
|
propagatedUserEnvPkgs = [ shared_mime_info
|
|
gnome3.gnome_themes_standard ];
|
|
|
|
buildInputs = [ vala_0_32 libgit2 gtk3 glib json_glib webkitgtk libgee libpeas
|
|
libgit2-glib gtkspell3 gnome3.gtksourceview gnome3.gsettings_desktop_schemas
|
|
librsvg libsecret gobjectIntrospection gnome3.adwaita-icon-theme ];
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook intltool pkgconfig ];
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=758240
|
|
preBuild = ''make -j$NIX_BUILD_CORES Gitg-1.0.gir'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.gnome.org/action/show/Apps/Gitg;
|
|
description = "GNOME GUI client to view git repositories";
|
|
maintainers = with maintainers; [ domenkozar ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|