1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

Merge pull request #312920 from eliandoran/dev/frequest_fix_desktop_icon

frequest: fix desktop icon name
This commit is contained in:
Doron Behar 2024-05-22 16:15:34 +03:00 committed by GitHub
commit f365ba1e01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, qt5 }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, qt5 }:
stdenv.mkDerivation (finalAttrs: {
pname = "frequest";
@ -33,6 +33,15 @@ stdenv.mkDerivation (finalAttrs: {
];
sourceRoot = "frequest";
patches = [
# This fix has been merged upstream into the develop branch, but it was not released yet. It can be removed once a new version is released.
(fetchpatch {
name = "Change-desktop-icon-name";
url = "https://github.com/fabiobento512/FRequest/commit/22e98970b78f6d9ca0037c39c2492e93e836abff.patch";
hash = "sha256-YoI68SPMHD4bAgjWpn6eSda3Oon8bevbiwTx1JFFm40=";
})
];
buildInputs = [
qt5.qtbase
];