57 lines
1 KiB
Nix
57 lines
1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, pkg-config
|
|
, qt6
|
|
, curl
|
|
, ffmpeg
|
|
, cubeb
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "qcm";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hypengw";
|
|
repo = "Qcm";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-6QivAQqOuWIldx2Rh5nNsj0gia3AOUm6vy9aqyJ1G6k=";
|
|
};
|
|
|
|
patches = [ ./remove_cubeb_vendor.patch ];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6.qtbase
|
|
qt6.qtdeclarative
|
|
qt6.qtwayland
|
|
curl
|
|
ffmpeg
|
|
cubeb
|
|
] ++ cubeb.passthru.backendLibs;
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath cubeb.passthru.backendLibs}"
|
|
];
|
|
|
|
postInstall = ''
|
|
rm -r $out/{include,lib/cmake}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An unofficial Qt client for netease cloud music";
|
|
homepage = "https://github.com/hypengw/Qcm";
|
|
license = licenses.gpl2Plus;
|
|
mainProgram = "Qcm";
|
|
maintainers = with maintainers; [ aleksana ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|