nixpkgs/pkgs/by-name/qc/qcm/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1003 B
Nix
Raw Normal View History

2024-02-08 09:23:00 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, qt6
, curl
, ffmpeg
, cubeb
}:
stdenv.mkDerivation rec {
pname = "qcm";
2024-08-20 08:23:00 +00:00
version = "1.0.4";
2024-02-08 09:23:00 +00:00
src = fetchFromGitHub {
owner = "hypengw";
repo = "Qcm";
rev = "v${version}";
fetchSubmodules = true;
2024-08-20 08:23:00 +00:00
hash = "sha256-dwzstlmGuY8oRxxO2BPXmSCSnE7Fbp+dyYVs17HUopA=";
2024-02-08 09:23:00 +00:00
};
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}"
];
2024-08-20 08:23:00 +00:00
meta = {
2024-02-08 09:23:00 +00:00
description = "Unofficial Qt client for netease cloud music";
homepage = "https://github.com/hypengw/Qcm";
2024-08-20 08:23:00 +00:00
license = lib.licenses.gpl2Plus;
2024-02-08 09:23:00 +00:00
mainProgram = "Qcm";
2024-08-20 08:23:00 +00:00
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.linux;
2024-02-08 09:23:00 +00:00
};
}