forked from mirrors/nixpkgs
adding kphone
svn path=/nixpkgs/trunk/; revision=17265
This commit is contained in:
parent
72d6ffb8cf
commit
b6580e4b14
25
pkgs/applications/networking/kphone/default.nix
Normal file
25
pkgs/applications/networking/kphone/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue