mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
61 lines
1.9 KiB
Nix
61 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, qt5 }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "frequest";
|
|
version = "1.2a";
|
|
|
|
srcs = [
|
|
(fetchFromGitHub {
|
|
owner = "fabiobento512";
|
|
name = "frequest";
|
|
repo = "FRequest";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-fdn3MK5GWBOhJjpMtRaytO9EsVzz6KJknDhqWtAyXCc=";
|
|
})
|
|
# The application depends on hard-coded relative paths to ../CommonLibs and ../CommonUtils.
|
|
# See https://github.com/fabiobento512/FRequest/wiki/Building-FRequest for more info.
|
|
# Upstream provides no tags for these dependencies, use latest commit on their `master` branch.
|
|
# Changing the name of these srcs will break the build.
|
|
(fetchFromGitHub {
|
|
owner = "fabiobento512";
|
|
name = "CommonLibs";
|
|
repo = "CommonLibs";
|
|
rev = "d3906931bb06ddf4194ff711a59e1dcff80fa82f";
|
|
hash = "sha256-iLJJ95yJ+VjNPuk8fNEDvYBI0db0rcfJF12a9azGv1Y=";
|
|
})
|
|
(fetchFromGitHub {
|
|
owner = "fabiobento512";
|
|
name = "CommonUtils";
|
|
repo = "CommonUtils";
|
|
rev = "53970984f6538d78350be1b9426032bcb5bcf818";
|
|
hash = "sha256-nRv9DriSOuAiWhy+KkOVNEz5oSgNNNJZqk8sNwgbx8U=";
|
|
})
|
|
];
|
|
sourceRoot = "frequest";
|
|
|
|
buildInputs = [
|
|
qt5.qtbase
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
qt5.wrapQtAppsHook
|
|
qt5.qmake
|
|
];
|
|
|
|
# Without this, nothing gets installed in $out.
|
|
postInstall = ''
|
|
install -D FRequest $out/bin/FRequest
|
|
install -D LinuxAppImageDeployment/frequest.desktop $out/share/applications/frequest.desktop
|
|
install -D LinuxAppImageDeployment/frequest_icon.png $out/share/icons/hicolor/128x128/apps/frequest_icon.png
|
|
'';
|
|
|
|
meta = {
|
|
description = "A fast, lightweight and opensource desktop application to make HTTP(s) requests";
|
|
homepage = "https://fabiobento512.github.io/FRequest";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ eliandoran ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "frequest";
|
|
};
|
|
})
|