xpra.xf86videodummy: init at 0.3.8

This commit is contained in:
Morgan Jones
2018-10-01 00:28:36 +00:00
parent 12ed9dfd25
commit 73cabebdd1
5 changed files with 215 additions and 4 deletions
+7 -4
View File
@@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, python2Packages, pkgconfig
{ stdenv, lib, fetchurl, callPackage, python2Packages, pkgconfig
, xorg, gtk2, glib, pango, cairo, gdk_pixbuf, atk
, makeWrapper, xorgserver, getopt, xauth, utillinux, which
, ffmpeg, x264, libvpx, libwebp
@@ -10,12 +10,14 @@ with lib;
let
inherit (python2Packages) cython buildPythonApplication;
xf86videodummy = callPackage ./xf86videodummy { };
in buildPythonApplication rec {
name = "xpra-${version}";
pname = "xpra";
version = "2.3.3";
src = fetchurl {
url = "https://xpra.org/src/${name}.tar.xz";
url = "https://xpra.org/src/${pname}-${version}.tar.xz";
sha256 = "1azvvddjfq7lb5kmbn0ilgq2nf7pmymsc3b9lhbjld6w156qdv01";
};
@@ -73,6 +75,7 @@ in buildPythonApplication rec {
# sed -i '4iexport PATH=${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux ]}\${PATH:+:}\$PATH' $out/bin/xpra
#'';
passthru = { inherit xf86videodummy; };
meta = {
homepage = http://xpra.org/;
@@ -80,7 +83,7 @@ in buildPythonApplication rec {
downloadURLRegexp = "xpra-.*[.]tar[.]xz$";
description = "Persistent remote applications for X";
platforms = platforms.linux;
maintainers = with maintainers; [ tstrobel offline ];
license = licenses.gpl2;
maintainers = with maintainers; [ tstrobel offline numinit ];
};
}