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

79 lines
1.9 KiB
Nix
Raw Normal View History

2017-03-25 11:51:36 +00:00
{ stdenv, lib, libXcomposite, libgnome_keyring, makeWrapper, udev, curl, alsaLib
, libXfixes, atk, gtk2, libXrender, pango, gnome2, cairo, freetype, fontconfig
, libX11, libXi, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst
, nss, nspr, cups, fetchurl, expat, gdk_pixbuf, libXdamage, libXrandr, dbus
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}";
2017-03-24 21:01:41 +00:00
version = "2.2.1";
2017-03-05 15:38:55 +00:00
src = fetchurl {
url = "https://release.gitkraken.com/linux/v${version}.tar.gz";
2017-03-24 21:01:41 +00:00
sha256 = "12nyw2dh9ylrms264dbw0xzyif0znmba32zyfq7kdp0iay0wvgqd";
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
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-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
installPhase = ''
mkdir -p "$out/opt/gitkraken"
cp -r ./* "$out/opt/gitkraken"
2017-03-25 11:51:36 +00:00
'';
postFixup = ''
2017-03-05 15:38:55 +00:00
patchelf --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
--set-rpath "$libPath:$out/opt/gitkraken" "$out/opt/gitkraken/gitkraken"
wrapProgram $out/opt/gitkraken/gitkraken \
2017-03-24 21:01:41 +00:00
--prefix LD_PRELOAD : "${makeLibraryPath [ curl ]}/libcurl.so.4" \
--prefix LD_PRELOAD : "${makeLibraryPath [ libgnome_keyring ]}/libgnome-keyring.so.0"
2017-03-05 15:38:55 +00:00
mkdir "$out/bin"
ln -s "$out/opt/gitkraken/gitkraken" "$out/bin/gitkraken"
'';
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
};
}