5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
99 lines
1.6 KiB
Nix
99 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, vala
|
|
, pkg-config
|
|
, gtk3
|
|
, glib
|
|
, gpgme
|
|
, json-glib
|
|
, wrapGAppsHook3
|
|
, libpeas
|
|
, bash
|
|
, gobject-introspection
|
|
, gtksourceview4
|
|
, gsettings-desktop-schemas
|
|
, gnome
|
|
, gspell
|
|
, gvfs
|
|
, shared-mime-info
|
|
, libgee
|
|
, libgit2-glib
|
|
, libhandy
|
|
, libsecret
|
|
, libxml2
|
|
, meson
|
|
, ninja
|
|
, python3
|
|
, libdazzle
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gitg";
|
|
version = "44";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
hash = "sha256-NCoxaE2rlnHNNBvT485mWtzuBGDCoIHdxJPNvAMTJTA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
vala
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gpgme
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
gtksourceview4
|
|
gspell
|
|
gvfs
|
|
json-glib
|
|
libdazzle
|
|
libgee
|
|
libgit2-glib
|
|
libhandy
|
|
libpeas
|
|
libsecret
|
|
libxml2
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs meson_post_install.py
|
|
|
|
substituteInPlace tests/libgitg/test-commit.vala --replace-fail "/bin/bash" "${bash}/bin/bash"
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
# Thumbnailers
|
|
--prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
|
)
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.gnome.org/GNOME/gitg";
|
|
description = "GNOME GUI client to view git repositories";
|
|
mainProgram = "gitg";
|
|
maintainers = with maintainers; [ domenkozar Luflosi ];
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|