gnomecast: init at 1.4.0

also pycaption, required dep.
This commit is contained in:
Will Dietz
2018-07-15 17:45:16 -05:00
parent ed23255c5a
commit 4626d0b255
4 changed files with 72 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib, python3Packages, gtk3, gobjectIntrospection, ffmpeg, wrapGAppsHook }:
with python3Packages;
buildPythonApplication rec {
pname = "gnomecast";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "17hxqpisw6j6caw6bzp0wd0p3idqy6a78wwwk8kms6hpxasirwyk";
};
nativeBuildInputs = [ wrapGAppsHook ];
propagatedBuildInputs = [
PyChromecast bottle pycaption paste html5lib pygobject3 dbus-python
gtk3 gobjectIntrospection
];
preFixup = ''
gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg ]})
'';
meta = with lib; {
description = "A native Linux GUI for Chromecasting local files";
homepage = https://github.com/keredson/gnomecast;
license = with licenses; [ gpl3 ];
};
}