nixpkgs-suyu/pkgs/applications/audio/cozy/default.nix

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

93 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub
2018-10-02 00:17:42 +02:00
, ninja
, meson
, pkg-config
2018-10-02 00:17:42 +02:00
, wrapGAppsHook
, appstream-glib
, desktop-file-utils
, gtk3
, gst_all_1
, gobject-introspection
2021-07-25 13:30:44 +02:00
, libhandy
2021-08-29 18:07:51 +02:00
, libdazzle
2018-10-02 00:17:42 +02:00
, python3Packages
, cairo
, gettext
, gnome
2021-07-25 13:30:44 +02:00
, pantheon
2018-10-02 00:17:42 +02:00
}:
python3Packages.buildPythonApplication rec {
format = "other"; # no setup.py
2019-01-13 08:46:10 +01:00
pname = "cozy";
2022-01-21 06:02:53 +01:00
version = "1.2.0";
2018-10-02 00:17:42 +02:00
# Temporary fix
# See https://github.com/NixOS/nixpkgs/issues/57029
# and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
2018-10-02 00:17:42 +02:00
src = fetchFromGitHub {
owner = "geigi";
2019-01-13 08:46:10 +01:00
repo = pname;
2018-10-02 00:17:42 +02:00
rev = version;
2022-01-21 06:02:53 +01:00
sha256 = "0igqf9b77i13sxlk4ziw549h379hmz1slrb3vvf8irk94gxabsaw";
2018-10-02 00:17:42 +02:00
};
nativeBuildInputs = [
meson ninja pkg-config
2018-10-02 00:17:42 +02:00
wrapGAppsHook
appstream-glib
desktop-file-utils
gobject-introspection
2018-10-02 00:17:42 +02:00
];
buildInputs = [
gtk3
cairo
gettext
gnome.adwaita-icon-theme
2021-08-29 18:07:51 +02:00
libdazzle
2021-07-25 13:30:44 +02:00
libhandy
pantheon.granite
2018-10-02 00:17:42 +02:00
] ++ (with gst_all_1; [
gstreamer
gst-plugins-good
gst-plugins-ugly
gst-plugins-base
gst-plugins-bad
2018-10-02 00:17:42 +02:00
]);
propagatedBuildInputs = with python3Packages; [
2020-10-23 20:02:44 +02:00
apsw
cairo
2018-10-02 00:17:42 +02:00
dbus-python
2020-10-23 20:02:44 +02:00
distro
gst-python
magic
2018-10-02 00:17:42 +02:00
mutagen
2020-10-23 20:02:44 +02:00
packaging
2018-10-02 00:17:42 +02:00
peewee
2020-10-23 20:02:44 +02:00
pygobject3
pytz
requests
2018-10-02 00:17:42 +02:00
];
postPatch = ''
2021-07-25 13:30:44 +02:00
patchShebangs meson/*.py
2018-10-02 00:17:42 +02:00
'';
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/";
2018-10-02 00:17:42 +02:00
maintainers = [ maintainers.makefu ];
license = licenses.gpl3;
};
}