clementine: wrapped -> unwrapped
This commit is contained in:
parent
1c08ecc94c
commit
c8aae45c27
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue