Merge pull request #7280 from auntieNeo/blink

Bumped blink version to 1.2.2
This commit is contained in:
Arseniy Seroka
2015-04-09 05:20:19 +03:00
3 changed files with 28 additions and 17 deletions

View File

@@ -10982,19 +10982,19 @@ let
sipsimple = buildPythonPackage rec {
name = "sipsimple-${version}";
version = "1.4.2";
version = "2.3.1";
disabled = isPy3k;
configurePhase = "find -name 'configure' -exec chmod a+x {} \\; ; find -name 'aconfigure' -exec chmod a+x {} \\; ; ${python}/bin/${python.executable} setup.py build_ext --pjsip-clean-compile";
src = pkgs.fetchurl {
url = "http://download.ag-projects.com/SipClient/python-${name}.tar.gz";
sha256 = "f6e6de7ab5f20e8ae08966b8811462e4271833db4f7fbab58ffba4e5c07ab114";
sha256 = "1n3g1zg3zgdybikdla0qdqvpa06vn1ka2asr61lb8kk6xbvqkljv";
};
propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib];
propagatedBuildInputs = with self; [ cython pkgs.openssl dns dateutil xcaplib msrplib lxml ];
buildInputs = with self; [ pkgs.alsaLib ];
buildInputs = with pkgs; [ alsaLib ffmpeg libv4l pkgconfig sqlite ];
installPhase = "${python}/bin/${python.executable} setup.py install --prefix=$out";