summary refs log tree commit diff
path: root/pkgs/applications/video/kazam/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/video/kazam/default.nix')
-rw-r--r--pkgs/applications/video/kazam/default.nix51
1 files changed, 51 insertions, 0 deletions
diff --git a/pkgs/applications/video/kazam/default.nix b/pkgs/applications/video/kazam/default.nix
new file mode 100644
index 000000000000..17bf282a459a
--- /dev/null
+++ b/pkgs/applications/video/kazam/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchurl, python3Packages, gst_all_1, makeWrapper, gobjectIntrospection
+, gtk3, libwnck3, keybinder, intltool, libcanberra }:
+
+
+python3Packages.buildPythonPackage rec {
+  name = "kazam-${version}";
+  version = "1.4.3";
+  namePrefix = "";
+
+  src = fetchurl {
+    url = "https://launchpad.net/kazam/stable/${version}/+download/kazam-${version}.tar.gz";
+    sha256 = "00bcn0yj9xrv87sf6xd3wpilsjgjpsj15zzpjh351ffpjnr0ica8";
+  };
+
+  # TODO: keybinder, appindicator3
+  buildInputs = with python3Packages;
+    [ pygobject3 pyxdg pycairo gst_all_1.gstreamer gst_all_1.gst-plugins-base
+      gst_all_1.gst-plugins-good gobjectIntrospection gtk3 libwnck3 distutils_extra
+      intltool dbus ];
+
+  # TODO: figure out why PYTHONPATH is not passed automatically for those programs
+  pythonPath = with python3Packages;
+    [ pygobject3 pyxdg pycairo dbus ];
+
+  patches = [ ./datadir.patch ./bug_1190693.patch ];
+  prePatch = ''
+    rm setup.cfg
+    substituteInPlace kazam/backend/grabber.py --replace "/usr/bin/canberra-gtk-play" "${libcanberra}/bin/canberra-gtk-play"
+  '';
+
+  # no tests
+  doCheck = false;
+
+  preFixup = ''
+    wrapProgram $out/bin/kazam \
+      --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
+      --prefix LD_LIBRARY_PATH ":" "${gtk3}/lib:${gst_all_1.gstreamer}/lib:${keybinder}/lib" \
+      --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \
+      --prefix XDG_DATA_DIRS : "${gtk3}/share" \
+      --set GST_REGISTRY "/tmp/kazam.gstreamer.registry";
+  '';
+
+
+  meta = with stdenv.lib; {
+    description = "Cross-platform, Friend-2-Friend and secure decentralised communication platform";
+    homepage = https://code.launchpad.net/kazam;
+    #license = licenses.bsd2;
+    platforms = platforms.linux;
+    maintainers = [ maintainers.iElectric ];
+  };
+}