about summary refs log tree commit diff
path: root/pkgs/applications/audio/songrec/default.nix
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2021-06-15 12:58:44 +0200
committerGitHub <noreply@github.com>2021-06-15 12:58:44 +0200
commit671989e41af42aac95028343097629c8686b2a3d (patch)
tree16d501ae9dbec1643c4ef6c53f775b52b1b4d6c2 /pkgs/applications/audio/songrec/default.nix
parentb31bdff3fd2cc65dfe49246946b9b598ea5abc10 (diff)
songrec: install /share (#126891)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Diffstat (limited to 'pkgs/applications/audio/songrec/default.nix')
-rw-r--r--pkgs/applications/audio/songrec/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/audio/songrec/default.nix b/pkgs/applications/audio/songrec/default.nix
index 2928771b3ec70..ccedb4c069ec0 100644
--- a/pkgs/applications/audio/songrec/default.nix
+++ b/pkgs/applications/audio/songrec/default.nix
@@ -25,6 +25,10 @@ rustPlatform.buildRustPackage rec {
 
   buildInputs = [ alsa-lib gtk3 openssl ffmpeg ];
 
+  postInstall = ''
+    mv packaging/rootfs/usr/share $out/share
+  '';
+
   meta = with lib; {
     description = "An open-source Shazam client for Linux, written in Rust";
     homepage = "https://github.com/marin-m/SongRec";