Skip to content

Commit

Permalink
mellowplayer: init at 3.6.4 (#92653)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalbasit committed Jul 13, 2020
1 parent b8e3f27 commit 21104fc
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 0 deletions.
70 changes: 70 additions & 0 deletions pkgs/applications/audio/mellowplayer/default.nix
@@ -0,0 +1,70 @@
{ cmake
, fetchFromGitLab
, lib
, libnotify
, mkDerivation
, pkgconfig
, qtbase
, qtdeclarative
, qtgraphicaleffects
, qtquickcontrols2
, qttools
, qtwebengine
}:

mkDerivation rec {
pname = "MellowPlayer";
version = "3.6.4";

src = fetchFromGitLab {
owner = "ColinDuquesnoy";
repo = "MellowPlayer";
rev = version;
sha256 = "1ss7s3kal4vzhz7ld0yy2kvp1rk2w3i6fya0z3xd7nff9p31gqvw";
};

nativeBuildInputs = [ cmake pkgconfig ];

buildInputs = [
libnotify
qtbase
qtdeclarative
qtgraphicaleffects
qtquickcontrols2
qttools
qtwebengine
];

doCheck = true;

cmakeFlags = [ "-DBUILD_TESTS=ON" ];

preCheck = ''
# Running the tests requires a location at the home directory for logging.
export HOME="$NIX_BUILD_TOP/home"
mkdir -p "$HOME/.local/share/MellowPlayer.Tests/MellowPlayer.Tests/Logs"
# Without this, the tests fail because they cannot create the QT Window
export QT_QPA_PLATFORM=offscreen
''
# TODO: The tests are failing because it can't locate QT plugins. Is there a better way to do this?
+ (builtins.concatStringsSep "\n" (lib.lists.flatten (builtins.map
(pkg: [
(lib.optionalString (pkg ? qtPluginPrefix) ''
export QT_PLUGIN_PATH="${pkg}/${pkg.qtPluginPrefix}"''${QT_PLUGIN_PATH:+':'}$QT_PLUGIN_PATH
'')

(lib.optionalString (pkg ? qtQmlPrefix) ''
export QML2_IMPORT_PATH="${pkg}/${pkg.qtQmlPrefix}"''${QML2_IMPORT_PATH:+':'}$QML2_IMPORT_PATH
'')
]) buildInputs)));

meta = with lib; {
inherit (qtbase.meta) platforms;

description = "Cloud music integration for your desktop.";
homepage = "https://gitlab.com/ColinDuquesnoy/MellowPlayer";
license = licenses.gpl2;
maintainers = with maintainers; [ kalbasit ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -2559,6 +2559,8 @@ in

clementineUnfree = clementine.unfree;

mellowplayer = libsForQt5.callPackage ../applications/audio/mellowplayer { };

ciopfs = callPackage ../tools/filesystems/ciopfs { };

circleci-cli = callPackage ../development/tools/misc/circleci-cli { };
Expand Down

0 comments on commit 21104fc

Please sign in to comment.