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

117 lines
2.7 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, libXcomposite, libgnome-keyring, makeWrapper, udev, curl, alsa-lib
, libXfixes, atk, gtk3, libXrender, pango, gnome, cairo, freetype, fontconfig
2018-03-01 19:05:20 +00:00
, libX11, libXi, libxcb, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst
, nss, nspr, cups, fetchzip, expat, gdk-pixbuf, libXdamage, libXrandr, dbus
, makeDesktopItem, openssl, wrapGAppsHook, at-spi2-atk, at-spi2-core, libuuid
, e2fsprogs, krb5, libdrm, mesa
2017-03-05 15:38:55 +00:00
}:
2021-01-15 13:21:58 +00:00
with lib;
2017-03-24 21:01:41 +00:00
2018-03-12 17:34:46 +00:00
let
curlWithGnuTls = curl.override { gnutlsSupport = true; sslSupport = false; };
in
2017-03-05 15:38:55 +00:00
stdenv.mkDerivation rec {
pname = "gitkraken";
2021-07-28 17:11:22 +00:00
version = "7.7.1";
2017-03-05 15:38:55 +00:00
src = fetchzip {
url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz";
2021-07-28 17:11:22 +00:00
sha256 = "sha256-nFXj40PfHctymBcZoiJNzkvAsFnABD300/aUqNpUn2c=";
2017-03-05 15:38:55 +00:00
};
dontBuild = true;
dontConfigure = true;
2017-03-24 21:01:41 +00:00
libPath = makeLibraryPath [
2017-03-05 15:38:55 +00:00
stdenv.cc.cc.lib
2018-03-12 17:34:46 +00:00
curlWithGnuTls
2017-03-05 15:38:55 +00:00
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
alsa-lib
2017-03-05 15:38:55 +00:00
expat
2019-05-22 11:03:39 +00:00
gdk-pixbuf
2017-03-05 15:38:55 +00:00
dbus
libXdamage
libXrandr
atk
pango
cairo
freetype
fontconfig
libXcomposite
libXfixes
libXrender
2019-01-01 19:30:56 +00:00
gtk3
libgnome-keyring
2019-01-01 19:30:56 +00:00
openssl
2019-06-20 04:52:02 +00:00
at-spi2-atk
at-spi2-core
libuuid
e2fsprogs
krb5
libdrm
mesa
2017-03-05 15:38:55 +00:00
];
desktopItem = makeDesktopItem {
2021-01-24 00:11:22 +00:00
name = pname;
exec = "gitkraken";
2018-05-31 21:04:50 +00:00
icon = "gitkraken";
desktopName = "GitKraken";
genericName = "Git Client";
categories = "Development;";
comment = "Graphical Git client from Axosoft";
};
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
buildInputs = [ gtk3 gnome.adwaita-icon-theme ];
2018-05-31 21:04:50 +00:00
installPhase = ''
runHook preInstall
mkdir -p $out/share/gitkraken/
cp -R $src/* $out/share/gitkraken/
mkdir -p $out/bin
2019-02-10 17:45:37 +00:00
ln -s $out/share/gitkraken/gitkraken $out/bin/gitkraken
mkdir -p $out/share/applications
2021-01-24 00:11:22 +00:00
ln -s ${desktopItem}/share/applications/* $out/share/applications
mkdir -p $out/share/pixmaps
cp gitkraken.png $out/share/pixmaps/gitkraken.png
runHook postInstall
2018-05-31 21:04:50 +00:00
'';
2018-05-31 21:04:50 +00:00
postFixup = ''
pushd $out/share/gitkraken
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" gitkraken
2018-05-31 21:04:50 +00:00
for file in $(find . -type f \( -name \*.node -o -name gitkraken -o -name \*.so\* \) ); do
patchelf --set-rpath ${libPath}:$out/share/gitkraken $file || true
done
popd
2017-03-05 15:38:55 +00:00
'';
2017-03-24 21:01:41 +00:00
meta = {
homepage = "https://www.gitkraken.com/";
2017-03-05 15:38:55 +00:00
description = "The downright luxurious and most popular Git client for Windows, Mac & Linux";
license = licenses.unfree;
platforms = platforms.linux;
2019-08-18 02:04:38 +00:00
maintainers = with maintainers; [ xnwdd evanjs ];
2017-03-05 15:38:55 +00:00
};
}