48 lines
1.4 KiB
Nix
48 lines
1.4 KiB
Nix
{
|
|
appimageTools,
|
|
lib,
|
|
fetchurl,
|
|
stdenv,
|
|
}:
|
|
|
|
appimageTools.wrapType2 rec {
|
|
pname = "httpie-desktop";
|
|
version = "2024.1.2";
|
|
|
|
src =
|
|
if stdenv.hostPlatform.system == "aarch64-linux" then
|
|
fetchurl {
|
|
url = "https://github.com/httpie/desktop/releases/download/v${version}/HTTPie-${version}-arm64.AppImage";
|
|
hash = "sha256-RhIyLakCkMUcXvu0sgl5MtV4YXXkqqH1UUS7bptUzww=";
|
|
}
|
|
else
|
|
fetchurl {
|
|
url = "https://github.com/httpie/desktop/releases/download/v${version}/HTTPie-${version}.AppImage";
|
|
hash = "sha256-OOP1l7J2BgO3nOPSipxfwfN/lOUsl80UzYMBosyBHrM=";
|
|
};
|
|
|
|
extraInstallCommands =
|
|
let
|
|
contents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
''
|
|
mkdir -p $out/share
|
|
cp -r ${contents}/usr/share/* $out/share
|
|
chmod +w $out/share
|
|
install -Dm644 ${contents}/httpie.desktop $out/share/applications/httpie.desktop
|
|
substituteInPlace $out/share/applications/httpie.desktop \
|
|
--replace-fail 'Exec=AppRun' 'Exec=httpie-desktop'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cross-platform API testing client for humans. Painlessly test REST, GraphQL, and HTTP APIs";
|
|
homepage = "https://github.com/httpie/desktop";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "httpie-desktop";
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
];
|
|
};
|
|
}
|