Skip to content

Commit 9a3a0f3

Browse files
moni-dzSuperSandro2000
authored andcommitted
vocal: fix build
Co-authored-by: Sandro <sandro.jaeckel@gmail.com> (cherry picked from commit 01ef9fa)
1 parent bc0d018 commit 9a3a0f3

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

pkgs/applications/audio/vocal/default.nix

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
{ lib, stdenv
1+
{ lib
2+
, stdenv
23
, fetchFromGitHub
4+
, fetchpatch
35
, nix-update-script
46
, cmake
57
, ninja
@@ -61,13 +63,22 @@ stdenv.mkDerivation rec {
6163
glib-networking
6264
];
6365

66+
patches = [
67+
# granite 6.0.0 removed about dialogs
68+
# see: https://github.com/needle-and-thread/vocal/issues/483
69+
(fetchpatch {
70+
name = "remove-about.patch";
71+
url = "https://raw.githubusercontent.com/archlinux/svntogit-community/03543ffdb6cd52ce1a8293f3303225b3afac2431/trunk/remove-about.patch";
72+
sha256 = "sha256-yGD7BYOTmqs4h+Odh/mB3fI1HM7GDO6F+QaHpRUD5p4=";
73+
})
74+
];
75+
6476
passthru = {
6577
updateScript = nix-update-script {
6678
attrPath = pname;
6779
};
6880
};
6981

70-
7182
meta = with lib; {
7283
description = "The podcast client for the modern free desktop";
7384
longDescription = ''

0 commit comments

Comments
 (0)