mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
altair-graphql-client: init at version 4.0.2
This commit is contained in:
parent
302184108c
commit
b02f31d324
38
pkgs/development/tools/altair-graphql-client/default.nix
Normal file
38
pkgs/development/tools/altair-graphql-client/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib, appimageTools, fetchurl, gsettings-desktop-schemas, gtk3 }:
|
||||
|
||||
let
|
||||
pname = "altair";
|
||||
version = "4.0.2";
|
||||
name = "${pname}-v${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/imolorhe/altair/releases/download/v${version}/altair_${version}_x86_64_linux.AppImage";
|
||||
sha256 = "sha256-HCoK+ljcTmyBZSCDe6u2x2urqrQfi3DIlXfCqGWvl3E=";
|
||||
};
|
||||
|
||||
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" ];
|
||||
};
|
||||
}
|
@ -12354,6 +12354,8 @@ in
|
||||
alloy5
|
||||
alloy;
|
||||
|
||||
altair = callPackage ../development/tools/altair-graphql-client { };
|
||||
|
||||
ameba = callPackage ../development/tools/ameba { };
|
||||
|
||||
augeas = callPackage ../tools/system/augeas { };
|
||||
|
Loading…
Reference in New Issue
Block a user