95 lines
2.4 KiB
Nix
95 lines
2.4 KiB
Nix
{ stdenv
|
|
, fetchurl
|
|
, makeDesktopItem
|
|
, jre
|
|
, gtk3
|
|
, glib
|
|
, gnome3
|
|
, wrapGAppsHook
|
|
, libXtst
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "smartgithg";
|
|
version = "19.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.gz";
|
|
sha256 = "0i0dvyy9d63f4hk8czlyk83ai0ywhqp7wbdkq3s87l7irwgs42jy";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = [ jre gnome3.adwaita-icon-theme gtk3 ];
|
|
|
|
preFixup = with stdenv.lib; ''
|
|
gappsWrapperArgs+=( \
|
|
--prefix PATH : ${makeBinPath [ jre which ]} \
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [
|
|
gtk3
|
|
glib
|
|
libXtst
|
|
]} \
|
|
--prefix JRE_HOME : ${jre} \
|
|
--prefix JAVA_HOME : ${jre} \
|
|
--prefix SMARTGITHG_JAVA_HOME : ${jre} \
|
|
) \
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
sed -i '/ --login/d' bin/smartgit.sh
|
|
mkdir -pv $out/{bin,share/applications,share/icons/hicolor/scalable/apps/}
|
|
cp -av ./{dictionaries,lib} $out/
|
|
cp -av bin/smartgit.sh $out/bin/smartgit
|
|
ln -sfv $out/bin/smartgit $out/bin/smartgithg
|
|
|
|
cp -av $desktopItem/share/applications/* $out/share/applications/
|
|
for icon_size in 32 48 64 128 256; do
|
|
path=$icon_size'x'$icon_size
|
|
icon=bin/smartgit-$icon_size.png
|
|
mkdir -p $out/share/icons/hicolor/$path/apps
|
|
cp $icon $out/share/icons/hicolor/$path/apps/smartgit.png
|
|
done
|
|
|
|
cp -av bin/smartgit.svg $out/share/icons/hicolor/scalable/apps/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
desktopItem = with stdenv.lib; makeDesktopItem rec {
|
|
name = "smartgit";
|
|
exec = "smartgit";
|
|
comment = meta.description;
|
|
icon = "smartgit";
|
|
desktopName = "SmartGit";
|
|
categories = concatStringsSep ";" [
|
|
"Application"
|
|
"Development"
|
|
"RevisionControl"
|
|
];
|
|
mimeType = concatStringsSep ";" [
|
|
"x-scheme-handler/git"
|
|
"x-scheme-handler/smartgit"
|
|
"x-scheme-handler/sourcetree"
|
|
];
|
|
startupNotify = "true";
|
|
extraEntries = ''
|
|
Keywords=git
|
|
StartupWMClass=${name}
|
|
Version=1.0
|
|
Encoding=UTF-8
|
|
'';
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "GUI for Git, Mercurial, Subversion";
|
|
homepage = "https://www.syntevo.com/smartgit/";
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ jraygauthier ];
|
|
};
|
|
}
|