Files
nixpkgs/pkgs/by-name/gn/gnomecast/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

57 lines
1.2 KiB
Nix

{
stdenv,
lib,
python3Packages,
fetchFromGitHub,
gtk3,
gobject-introspection,
ffmpeg,
wrapGAppsHook3,
}:
with python3Packages;
buildPythonApplication {
pname = "gnomecast";
version = "unstable-2022-04-23";
format = "setuptools";
src = fetchFromGitHub {
owner = "keredson";
repo = "gnomecast";
rev = "d42d8915838b01c5cadacb322909e08ffa455d4f";
sha256 = "sha256-CJpbBuRzEjWb8hsh3HMW4bZA7nyDAwjrERCS5uGdwn8=";
};
nativeBuildInputs = [ wrapGAppsHook3 ];
propagatedBuildInputs = [
pychromecast
bottle
pycaption
paste
html5lib
pygobject3
dbus-python
gtk3
gobject-introspection
];
# NOTE: gdk-pixbuf setup hook does not run with strictDeps
# https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection
strictDeps = false;
preFixup = ''
gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg ]})
'';
# no tests
doCheck = false;
meta = with lib; {
description = "Native Linux GUI for Chromecasting local files";
homepage = "https://github.com/keredson/gnomecast";
license = with licenses; [ gpl3 ];
broken = stdenv.hostPlatform.isDarwin;
mainProgram = "gnomecast";
};
}