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;
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;