nixpkgs/pkgs/by-name/qc/qcm/package.nix
Marcin Serwin a0841af357
treewide: remove cubeb.passthru.backendLibs
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2025-05-25 10:16:55 +02:00

58 lines
1,004 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
cmake,
pkg-config,
qt6,
curl,
ffmpeg,
cubeb,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "qcm";
version = "1.1.2";
src = fetchFromGitHub {
owner = "hypengw";
repo = "Qcm";
rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-41GsG+NKCMw+LuRUf31ilRso/SkKYVV3IrMSviOZdWs=";
};
patches = [
./remove_cubeb_vendor.patch
];
nativeBuildInputs = [
cmake
pkg-config
qt6.wrapQtAppsHook
];
buildInputs = [
qt6.qtbase
qt6.qtdeclarative
qt6.qtsvg
qt6.qtwayland
curl
ffmpeg
cubeb
];
# Correct qml import path
postInstall = ''
mv $out/lib/qt6 $out/lib/qt-6
'';
meta = {
description = "Unofficial Qt client for netease cloud music";
homepage = "https://github.com/hypengw/Qcm";
license = lib.licenses.gpl2Plus;
mainProgram = "Qcm";
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.linux;
};
})