mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
44 lines
1.7 KiB
Nix
44 lines
1.7 KiB
Nix
{ stdenv, fetchurl, fetchgit, vala, intltool, libgit2, pkgconfig, gtk3, glib
|
|
, json_glib, webkitgtk, makeWrapper, libpeas, bash, gobjectIntrospection
|
|
, gnome3, gtkspell3, shared_mime_info, libgee, libgit2-glib, librsvg, libsecret }:
|
|
|
|
# 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 intltool libgit2 pkgconfig gtk3 glib json_glib webkitgtk libgee libpeas
|
|
libgit2-glib gtkspell3 gnome3.gsettings_desktop_schemas gnome3.gtksourceview
|
|
librsvg libsecret
|
|
gobjectIntrospection makeWrapper gnome3.adwaita-icon-theme ];
|
|
|
|
# https://bugzilla.gnome.org/show_bug.cgi?id=758240
|
|
preBuild = ''make -j$NIX_BUILD_CORES Gitg-1.0.gir'';
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/gitg" \
|
|
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|