Buildable Salut-à-toi

This commit is contained in:
Michael Raskin 2012-09-13 14:14:49 +04:00
parent bc8e5d2da2
commit b52919ac9e
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{stdenv, fetchurl, python, pythonPackages, pygobject}:
stdenv.mkDerivation rec {
url = "ftp://ftp.goffi.org/sat/sat-0.2.0.tar.bz2";
name = stdenv.lib.nameFromURL url ".tar";
src = fetchurl {
inherit url;
sha256 = "14qqgsgqns1xcp97nd3jcxrq54z1x5a6kimqxy029hh7ys813mf1";
};
buildInputs = with pythonPackages;
[
python twisted urwid beautifulsoup wxPython distribute pygobject
wokkel
];
configurePhase = ''
sed -e "s@sys.prefix@'$out'@g" -i setup.py
echo 'import wokkel.muc' | python
'';
buildPhase = ''
python setup.py build
'';
installPhase = ''
python setup.py install --prefix="$out"
'';
meta = {
homepage = "http://sat.goffi.org/";
description = "A multi-frontend XMPP client";
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.gpl3plus;
};
}

View file

@ -1431,6 +1431,8 @@ let
sablotron = callPackage ../tools/text/xml/sablotron { };
salut_a_toi = callPackage ../applications/networking/instant-messengers/salut-a-toi {};
screen = callPackage ../tools/misc/screen { };
scrot = callPackage ../tools/graphics/scrot { };