763293b0d9
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ lib, appimageTools, fetchurl, gsettings-desktop-schemas, gtk3 }:
|
|
|
|
let
|
|
pname = "altair";
|
|
version = "4.1.0";
|
|
name = "${pname}-v${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/imolorhe/altair/releases/download/v${version}/altair_${version}_x86_64_linux.AppImage";
|
|
sha256 = "sha256-YuG7H+7FXYGbNNhM5vxps72dqltcj3bA325e7ZbW8aI=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extract { inherit name src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit src name;
|
|
|
|
profile = ''
|
|
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
|
|
'';
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/${name} $out/bin/${pname}
|
|
|
|
install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
cp -r ${appimageContents}/usr/share/icons $out/share
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A feature-rich GraphQL Client IDE";
|
|
homepage = "https://github.com/imolorhe/altair";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ evalexpr ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|