fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
61 lines
1.2 KiB
Nix
61 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, alsa-lib
|
|
, ffmpeg
|
|
, kdePackages
|
|
, kdsingleapplication
|
|
, openssl
|
|
, pipewire
|
|
, taglib
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fooyin";
|
|
version = "0.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ludouzi";
|
|
repo = "fooyin";
|
|
rev = "v" + finalAttrs.version;
|
|
hash = "sha256-PlfZbgGzOma2r+opvxDbTdjUORpqh8fgBUSBusn6Kbw=";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
ffmpeg
|
|
kdsingleapplication
|
|
pipewire
|
|
kdePackages.qcoro
|
|
kdePackages.qtbase
|
|
kdePackages.qtsvg
|
|
taglib
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
kdePackages.qttools
|
|
kdePackages.wrapQtAppsHook
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_TESTING" (finalAttrs.doCheck or false))
|
|
# we need INSTALL_FHS to be true as the various artifacts are otherwise just dumped in the root
|
|
# of $out and the fixupPhase cleans things up anyway
|
|
(lib.cmakeBool "INSTALL_FHS" true)
|
|
];
|
|
|
|
env.LANG = "C.UTF-8";
|
|
|
|
meta = with lib; {
|
|
description = "A customisable music player";
|
|
mainProgram = "fooyin";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|