1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 08:05:40 +00:00
nixpkgs/pkgs/applications/audio/cozy/default.nix

93 lines
1.6 KiB
Nix
Raw Normal View History

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