Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bfb61a770929
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 41905d631f06
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 17, 2018

  1. clementine: add gst_plugins to buildInputs so setup hooks work

    when the build was refactored in ef5e212, this was lost.  a4ba8c6
    got most of it back, but missed the addition of gst_plugins to
    buildInputs.
    
    fixes #39960
    
    (cherry picked from commit 6fcee4e)
    Signed-off-by: Maximilian Bosch <maximilian@mbosch.me>
    jerith666 authored and Ma27 committed Oct 17, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    sxzz Kevin Deng 三咲智子
    Copy the full SHA
    41905d6 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 pkgs/applications/audio/clementine/default.nix
5 changes: 3 additions & 2 deletions pkgs/applications/audio/clementine/default.nix
Original file line number Diff line number Diff line change
@@ -69,7 +69,8 @@ let
name = "clementine-free-${version}";
inherit src patches nativeBuildInputs postPatch;

buildInputs = buildInputs ++ [ makeWrapper ];
# gst_plugins needed for setup-hooks
buildInputs = buildInputs ++ [ makeWrapper gst_plugins ];

cmakeFlags = [ "-DUSE_SYSTEM_PROJECTM=ON" ];

@@ -101,7 +102,7 @@ let
./clementine-spotify-blob.patch
];

buildInputs = buildInputs ++ [ libspotify makeWrapper gst_plugins ];
buildInputs = buildInputs ++ [ libspotify makeWrapper ];
# Only build and install the Spotify blob
preBuild = ''
cd ext/clementine-spotifyblob