about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/applications/audio/clementine/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/clementine/default.nix b/pkgs/applications/audio/clementine/default.nix
index c60c3e99741e..7cb3aa41465f 100644
--- a/pkgs/applications/audio/clementine/default.nix
+++ b/pkgs/applications/audio/clementine/default.nix
@@ -8,10 +8,10 @@ let
 
   withSpotify = config.clementine.spotify or false;
 
-  wrappedExeName = "clementine";
+  exeName = "clementine";
 
-  wrapped = stdenv.mkDerivation {
-    name = "clementine-wrapped-${version}";
+  unwrapped = stdenv.mkDerivation {
+    name = "clementine-unwrapped-${version}";
 
     src = fetchurl {
       url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
@@ -59,7 +59,7 @@ stdenv.mkDerivation {
   src = ./.;
 
   buildInputs = [
-    wrapped
+    unwrapped
     makeWrapper
   ] ++ gst_plugins
     ++ stdenv.lib.optional withSpotify libspotify;