Skip to content

Commit

Permalink
gnomecast: 1.9.11 -> 2022-04-23
Browse files Browse the repository at this point in the history
The gnomecast pypi package is
outdated(see: keredson/gnomecast#178)
and doesn't work with the PyChromecast version in
nixpkgs(keredson/gnomecast#171).
  • Loading branch information
bad committed Apr 11, 2023
1 parent 2dfbb7c commit fc365c2
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions pkgs/applications/video/gnomecast/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
{ stdenv, lib, python3Packages, gtk3, gobject-introspection, ffmpeg, wrapGAppsHook }:
{ stdenv, lib, python3Packages, fetchFromGitHub, gtk3, gobject-introspection, ffmpeg, wrapGAppsHook }:

with python3Packages;
buildPythonApplication rec {
pname = "gnomecast";
version = "1.9.11";
version = "unstable-2022-04-23";

src = fetchPypi {
inherit pname version;
sha256 = "4d8cd7a71f352137252c5a9ee13475bd67fb99594560ecff1efb0f718d8bbaac";
src = fetchFromGitHub {
owner = "keredson";
repo = "gnomecast";
rev = "d42d8915838b01c5cadacb322909e08ffa455d4f";
sha256 = "sha256-CJpbBuRzEjWb8hsh3HMW4bZA7nyDAwjrERCS5uGdwn8=";
};

nativeBuildInputs = [ wrapGAppsHook ];
propagatedBuildInputs = [
pychromecast bottle pycaption paste html5lib pygobject3 dbus-python
gtk3 gobject-introspection
pychromecast
bottle
pycaption
paste
html5lib
pygobject3
dbus-python
gtk3
gobject-introspection
];

# NOTE: gdk-pixbuf setup hook does not run with strictDeps
Expand Down

0 comments on commit fc365c2

Please sign in to comment.