nixpkgs/pkgs/applications/version-management/gitkraken/default.nix

99 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, libXcomposite, libgnome-keyring, makeWrapper, udev, curl, alsaLib
2017-03-25 11:51:36 +00:00
, libXfixes, atk, gtk2, libXrender, pango, gnome2, cairo, freetype, fontconfig
2018-03-01 19:05:20 +00:00
, libX11, libXi, libxcb, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst
2017-03-25 11:51:36 +00:00
, nss, nspr, cups, fetchurl, expat, gdk_pixbuf, libXdamage, libXrandr, dbus
, dpkg, makeDesktopItem
2017-03-05 15:38:55 +00:00
}:
2017-03-24 21:01:41 +00:00
with stdenv.lib;
2017-03-05 15:38:55 +00:00
stdenv.mkDerivation rec {
name = "gitkraken-${version}";
2018-03-01 19:05:20 +00:00
version = "3.3.4";
2017-03-05 15:38:55 +00:00
src = fetchurl {
url = "https://release.gitkraken.com/linux/v${version}.deb";
2018-03-01 19:05:20 +00:00
sha256 = "1djrbpm1f258cicf65ddvndpxi1izmnc12253k1zwl77z4jjbwls";
2017-03-05 15:38:55 +00:00
};
2017-03-24 21:01:41 +00:00
libPath = makeLibraryPath [
2017-03-05 15:38:55 +00:00
stdenv.cc.cc.lib
curl
udev
libX11
libXext
libXcursor
libXi
2018-03-01 19:05:20 +00:00
libxcb
2017-03-05 15:38:55 +00:00
glib
libXScrnSaver
libxkbfile
libXtst
nss
nspr
cups
alsaLib
expat
gdk_pixbuf
dbus
libXdamage
libXrandr
atk
pango
cairo
freetype
fontconfig
libXcomposite
libXfixes
libXrender
gtk2
gnome2.GConf
libgnome-keyring
2017-03-05 15:38:55 +00:00
];
2017-03-25 11:51:36 +00:00
nativeBuildInputs = [ makeWrapper ];
2017-03-05 15:38:55 +00:00
2017-03-25 11:51:36 +00:00
dontBuild = true;
2017-03-05 15:38:55 +00:00
desktopItem = makeDesktopItem {
name = "gitkraken";
exec = "gitkraken";
icon = "app";
desktopName = "GitKraken";
genericName = "Git Client";
categories = "Application;Development;";
comment = "Graphical Git client from Axosoft";
};
buildInputs = [ dpkg ];
2018-03-01 19:05:20 +00:00
unpackPhase = "true";
buildCommand = ''
mkdir -p $out
dpkg -x $src $out
substituteInPlace $out/usr/share/applications/gitkraken.desktop \
--replace /usr/share/gitkraken $out/bin
cp -av $out/usr/* $out
rm -rf $out/etc $out/usr $out/share/lintian
chmod -R g-w $out
2018-03-01 19:05:20 +00:00
for file in $(find $out -type f \( -perm /0111 -o -name \*.so\* \) ); do
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$file" || true
patchelf --set-rpath ${libPath}:$out/share/gitkraken $file || true
done
2018-03-01 19:05:20 +00:00
find $out/share/gitkraken -name "*.node" -exec patchelf --set-rpath "${libPath}:$out/share/gitkraken" {} \;
2018-03-01 19:05:20 +00:00
rm $out/bin/gitkraken
ln -s $out/share/gitkraken/gitkraken $out/bin/gitkraken
2017-03-05 15:38:55 +00:00
'';
2017-03-24 21:01:41 +00:00
meta = {
2017-03-05 15:38:55 +00:00
homepage = https://www.gitkraken.com/;
description = "The downright luxurious and most popular Git client for Windows, Mac & Linux";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ xnwdd ];
2017-03-05 15:38:55 +00:00
};
}