nixpkgs/pkgs/applications/networking/instant-messengers/blink/default.nix

36 lines
966 B
Nix
Raw Normal View History

2015-07-10 18:53:04 +02:00
{ stdenv, fetchurl, pythonPackages, pyqt4, cython, libvncserver, zlib, twisted
, gnutls, libvpx }:
2014-05-16 22:46:03 +02:00
pythonPackages.buildPythonPackage rec {
name = "blink-${version}";
2015-12-24 14:41:23 +01:00
version = "1.4.2";
2014-05-16 22:46:03 +02:00
src = fetchurl {
url = "http://download.ag-projects.com/BlinkQt/${name}.tar.gz";
2015-12-24 14:41:23 +01:00
sha256 = "0ia5hgwyg6cm393ik4ggzhcmc957ncswycs07ilwj6vrrzraxfk7";
2014-05-16 22:46:03 +02:00
};
patches = [ ./pythonpath.patch ];
2015-04-08 06:57:48 +02:00
postPatch = ''
sed -i 's|@out@|'"''${out}"'|g' blink/resources.py
'';
2014-05-16 22:46:03 +02:00
2015-07-10 18:53:04 +02:00
propagatedBuildInputs = with pythonPackages;[ pyqt4 cjson sipsimple twisted
];
2014-05-16 22:46:03 +02:00
2015-07-10 18:53:04 +02:00
buildInputs = [ cython zlib libvncserver libvpx ];
2014-05-16 22:46:03 +02:00
postInstall = ''
wrapProgram $out/bin/blink \
--prefix LD_LIBRARY_PATH ":" ${gnutls.out}/lib
2014-05-16 22:46:03 +02:00
'';
2015-07-10 18:53:04 +02:00
meta = with stdenv.lib; {
2014-05-16 22:46:03 +02:00
homepage = http://icanblink.com/;
description = "A state of the art, easy to use SIP client";
2015-07-10 18:53:04 +02:00
platforms = platforms.linux;
license = licenses.mit;
maintainers = with maintainers; [ pSub ];
2014-05-16 22:46:03 +02:00
};
}