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

36 lines
966 B
Nix
Raw Normal View History

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