mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
96 lines
1.9 KiB
Nix
96 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
dpkg,
|
|
autoPatchelfHook,
|
|
makeBinaryWrapper,
|
|
fontconfig,
|
|
atk,
|
|
cairo,
|
|
gdk-pixbuf,
|
|
glib,
|
|
gtk3,
|
|
harfbuzz,
|
|
libdbusmenu,
|
|
libdbusmenu-gtk3,
|
|
libepoxy,
|
|
libgcrypt,
|
|
libgpg-error,
|
|
lz4,
|
|
nspr,
|
|
nss,
|
|
pango,
|
|
util-linux,
|
|
xz,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "reqable";
|
|
version = "3.0.31";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/reqable/reqable-app/releases/download/${finalAttrs.version}/reqable-app-linux-x86_64.deb";
|
|
hash = "sha256-GNxSGw00nnM9bN46sL7G4KcXnJ3gDXv8Xf3N0qbL/ao=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
dpkg
|
|
autoPatchelfHook
|
|
makeBinaryWrapper
|
|
];
|
|
|
|
buildInputs = [
|
|
atk
|
|
cairo
|
|
fontconfig
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
harfbuzz
|
|
libdbusmenu
|
|
libdbusmenu-gtk3
|
|
libepoxy
|
|
libgcrypt
|
|
libgpg-error
|
|
lz4
|
|
nspr
|
|
nss
|
|
pango
|
|
util-linux
|
|
xz
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cp -r usr $out
|
|
substituteInPlace $out/share/applications/reqable.desktop \
|
|
--replace-fail "/usr/share/reqable/" ""
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
preFixup = ''
|
|
mkdir $out/bin
|
|
makeWrapper $out/share/reqable/reqable $out/bin/reqable \
|
|
--prefix LD_LIBRARY_PATH : $out/share/reqable/lib \
|
|
--set GIO_MODULE_DIR "${glib.out}/lib/gio/modules"
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Generation API debugging and testing one-stop solution";
|
|
homepage = "https://reqable.com";
|
|
downloadPage = "https://github.com/reqable/reqable-app/releases";
|
|
changelog = "https://github.com/reqable/reqable-app/releases/tag/${finalAttrs.version}";
|
|
mainProgram = "reqable";
|
|
license = lib.licenses.unfree;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with lib.maintainers; [ chillcicada ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
})
|