Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
blueprint-compiler,
|
|
desktop-file-utils,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
vala,
|
|
wrapGAppsHook4,
|
|
glib-networking,
|
|
gst_all_1,
|
|
gtk4,
|
|
json-glib,
|
|
libadwaita,
|
|
libgee,
|
|
libsoup_3,
|
|
libxml2,
|
|
sqlite,
|
|
webkitgtk_6_0,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cassette";
|
|
version = "0.2.1.g49";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rirusha";
|
|
repo = "Cassette";
|
|
rev = "v${version}";
|
|
hash = "sha256-1wIYEDaVlqNDS50MiYGqCtf5xGWou/g/YfZChTdQIns=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib-networking
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gstreamer
|
|
gtk4
|
|
json-glib
|
|
libadwaita
|
|
libgee
|
|
libsoup_3
|
|
libxml2
|
|
sqlite
|
|
webkitgtk_6_0
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "GTK4/Adwaita application that allows you to use Yandex Music service on Linux operating systems";
|
|
homepage = "https://github.com/Rirusha/Cassette";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ averyanalex ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "cassette";
|
|
};
|
|
}
|