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

88 lines
1.5 KiB
Nix
Raw Normal View History

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