clementine: wrapped -> unwrapped

This commit is contained in:
Thomas Tuegel 2015-05-02 13:37:10 -05:00
parent 1c08ecc94c
commit c8aae45c27

View file

@ -8,10 +8,10 @@ let
withSpotify = config.clementine.spotify or false; withSpotify = config.clementine.spotify or false;
wrappedExeName = "clementine"; exeName = "clementine";
wrapped = stdenv.mkDerivation { unwrapped = stdenv.mkDerivation {
name = "clementine-wrapped-${version}"; name = "clementine-unwrapped-${version}";
src = fetchurl { src = fetchurl {
url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz; url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
@ -59,7 +59,7 @@ stdenv.mkDerivation {
src = ./.; src = ./.;
buildInputs = [ buildInputs = [
wrapped unwrapped
makeWrapper makeWrapper
] ++ gst_plugins ] ++ gst_plugins
++ stdenv.lib.optional withSpotify libspotify; ++ stdenv.lib.optional withSpotify libspotify;