3
0
Fork 0
forked from mirrors/nixpkgs

adding kphone

svn path=/nixpkgs/trunk/; revision=17265
This commit is contained in:
Marc Weber 2009-09-18 21:16:32 +00:00
parent 72d6ffb8cf
commit b6580e4b14
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,25 @@
args: with args;
stdenv.mkDerivation {
name = "kphone";
src = fetchurl {
url = mirror://sourceforge/kphone/files/KPhone%20SI/KPhoneSIv1.2/kphoneSI_1.2.tar.gz;
sha256 = "1q309n2gsdsa8d7ff2zwnyc69ngpnnj143dys90dnlmzr9ckhhg3";
};
buildInputs = [autoconf automake libtool qt pkgconfig
openssl libpng alsaLib
libX11 libXext libXt libICE libSM libX11
];
preConfigure = ''
autoconf
'';
meta = {
description = "KPhone is a SIP UA for Linux";
homepage = http://sourceforge.net/projects/kphone/;
license = "GPL";
maintainers = [args.lib.maintainers.marcweber];
platforms = args.lib.platforms.linux;
};
}

View file

@ -6927,6 +6927,13 @@ let
qt = qt3;
};
kphone = import ../applications/networking/kphone {
inherit fetchurl lib autoconf automake libtool pkgconfig openssl libpng alsaLib;
qt = qt3;
inherit (xlibs) libX11 libXext libXt libICE libSM;
stdenv = overrideGCC stdenv gcc42; # I'm to lazy to clean up header files
};
kuickshow = import ../applications/graphics/kuickshow {
inherit fetchurl stdenv kdelibs arts libpng libjpeg libtiff libungif imlib expat perl;
inherit (xlibs) libX11 libXext libSM;