summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Sánchez Muñoz <esm@eduardosm.net>2020-12-09 17:50:16 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2020-12-09 19:58:42 +0100
commit2959bb702852f707e6eacc16c9c5bbc919cc58ea (patch)
tree39ccaf65549fa59bedc71a00df3cc356dcf87f35
parentace2457eafa8169ed9495251d28371b37eb71fa5 (diff)
gqrx: fix icon
The icon is a single file, so it should be placed in `pixmaps` instead of `icons`.
-rw-r--r--pkgs/applications/radio/gqrx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/radio/gqrx/default.nix b/pkgs/applications/radio/gqrx/default.nix
index b2402aad33eb..d4d90a6c63c8 100644
--- a/pkgs/applications/radio/gqrx/default.nix
+++ b/pkgs/applications/radio/gqrx/default.nix
@@ -27,7 +27,7 @@ mkDerivation rec {
postInstall = ''
install -vD $src/gqrx.desktop -t "$out/share/applications/"
- install -vD $src/resources/icons/gqrx.svg -t "$out/share/icons/"
+ install -vD $src/resources/icons/gqrx.svg -t "$out/share/pixmaps/"
'';
meta = with stdenv.lib; {