summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-05-17 15:36:13 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-05-17 15:41:48 -0500
commite8efbcd3d3c2645e51b0efda71169fe656a600c8 (patch)
treec3a924d0a9e8ac2379a4c145254b89b1b2ed8805 /pkgs
parent9529a0dae2e2ebc8120ad74458bfcaf7eadaf3a8 (diff)
downloadnixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar.gz
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar.bz2
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar.lz
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar.xz
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.tar.zst
nixpkgs-e8efbcd3d3c2645e51b0efda71169fe656a600c8.zip
clementine: install desktop files and icons
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/clementine/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index 5ebe1b3b7b8..c9b16b65267 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -112,4 +112,9 @@ runCommand "clementine-${version}"
   makeWrapper "$free/bin/${exeName}" "$out/bin/${exeName}" \
       ${optionalString withSpotify "--set CLEMENTINE_SPOTIFYBLOB \"$blob/libexec/clementine\""} \
       --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
+
+  mkdir -p $out/share
+  for dir in applications icons kde4; do
+      ln -s "$free/share/$dir" "$out/share/$dir"
+  done
 ''