nixpkgs/pkgs/applications/audio/cozy/default.nix
makefu c43a2853d1
cozy: 1.2.1 -> 1.3.0
update to latest upstream release
fixes #291085
2024-03-05 00:04:02 +01:00

88 lines
1.4 KiB
Nix

{ lib, fetchFromGitHub
, ninja
, meson
, pkg-config
, wrapGAppsHook
, appstream-glib
, desktop-file-utils
, gtk3
, gst_all_1
, gobject-introspection
, libadwaita
, libdazzle
, python3Packages
, cairo
, gettext
, gnome
, pantheon
}:
python3Packages.buildPythonApplication rec {
format = "other"; # no setup.py
pname = "cozy";
version = "1.3.0";
src = fetchFromGitHub {
owner = "geigi";
repo = pname;
rev = version;
hash = "sha256-oMgdz2dny0u1XV13aHu5s8/pcAz8z/SAOf4hbCDsdjw";
};
nativeBuildInputs = [
meson ninja pkg-config
wrapGAppsHook
appstream-glib
desktop-file-utils
gobject-introspection
];
buildInputs = [
gtk3
cairo
gettext
gnome.adwaita-icon-theme
libadwaita
libdazzle
pantheon.granite
] ++ (with gst_all_1; [
gstreamer
gst-plugins-good
gst-plugins-ugly
gst-plugins-base
gst-plugins-bad
]);
propagatedBuildInputs = with python3Packages; [
apsw
cairo
dbus-python
distro
gst-python
magic
mutagen
packaging
peewee
pygobject3
pytz
requests
];
postPatch = ''
patchShebangs meson/*.py
'';
postInstall = ''
ln -s $out/bin/com.github.geigi.cozy $out/bin/cozy
'';
meta = with lib; {
description = "A modern audio book player for Linux using GTK 3";
homepage = "https://cozy.geigi.de/";
maintainers = [ maintainers.makefu ];
license = licenses.gpl3;
};
}