15 stdenv.mkDerivation (finalAttrs: {
19 src = fetchFromGitHub {
22 rev = "v" + finalAttrs.version;
23 hash = "sha256-9tNd0TDTxlm6jV2kkZGZbi8tZMj13jbp3+aKXOkNtIw=";
42 kdePackages.wrapQtAppsHook
46 (lib.cmakeBool "BUILD_TESTING" finalAttrs.finalPackage.doCheck)
47 # we need INSTALL_FHS to be true as the various artifacts are otherwise just dumped in the root
48 # of $out and the fixupPhase cleans things up anyway
49 (lib.cmakeBool "INSTALL_FHS" true)
55 description = "Customisable music player";
56 mainProgram = "fooyin";
57 license = licenses.gpl3Only;
58 maintainers = with maintainers; [ peterhoeg ];
59 platforms = platforms.all;