Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 70084e80a0c3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00aebe90110f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 30, 2020

  1. musescore: Add missing inputs qtgraphicaleffects, qtquickcontrols2

    Although MuseScore builds and starts without these, it’s unusable
    because the left palette fails to render, with these errors:
    
    qrc:/qml/palettes/PalettesWidget.qml:21:1: module "QtQuick.Controls" version 2.1 is not installed
    
    or
    
    qrc:/qml/palettes/PalettesWidget.qml:47:5: Type PalettesWidgetHeader unavailable
    qrc:/qml/palettes/PalettesWidgetHeader.qml:37:5: Type StyledButton unavailable
    qrc:/qml/palettes/StyledButton.qml:22:1: module "QtGraphicalEffects" is not installed
    
    Signed-off-by: Anders Kaseorg <andersk@mit.edu>
    andersk committed May 30, 2020
    Copy the full SHA
    7ed1ae0 View commit details

Commits on Jun 23, 2020

  1. Merge pull request #89204 from andersk/musescore

    musescore: Add missing inputs qtgraphicaleffects, qtquickcontrols2
    grahamc authored Jun 23, 2020
    Copy the full SHA
    00aebe9 View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/applications/audio/musescore/default.nix
6 changes: 4 additions & 2 deletions pkgs/applications/audio/musescore/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ stdenv, mkDerivation, lib, fetchzip, cmake, pkgconfig
, alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis
, portaudio, portmidi, qtbase, qtdeclarative, qtscript, qtsvg, qttools
, portaudio, portmidi, qtbase, qtdeclarative, qtgraphicaleffects
, qtquickcontrols2, qtscript, qtsvg, qttools
, qtwebengine, qtxmlpatterns
}:

@@ -26,7 +27,8 @@ mkDerivation rec {
buildInputs = [
alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis
portaudio portmidi # tesseract
qtbase qtdeclarative qtscript qtsvg qttools qtwebengine qtxmlpatterns
qtbase qtdeclarative qtgraphicaleffects qtquickcontrols2
qtscript qtsvg qttools qtwebengine qtxmlpatterns
];

meta = with stdenv.lib; {