summary refs log tree commit diff
path: root/pkgs/applications/networking/kphone/default.nix
blob: dceb24a48b894ef39db8fd059bd70a07fbab281a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchurl, autoconf, automake, libtool, qt3, pkgconfig
, openssl, libpng, alsaLib, libX11, libXext, libXt, libICE
, libSM }:

stdenv.mkDerivation {
  name = "kphone-1.2";

  src = fetchurl {
    url = mirror://sourceforge/kphone/kphoneSI_1.2.tar.gz;
    sha256 = "1q309n2gsdsa8d7ff2zwnyc69ngpnnj143dys90dnlmzr9ckhhg3";
  };

  buildInputs =
    [ autoconf automake libtool qt3 pkgconfig openssl libpng alsaLib
      libX11 libXext libXt libICE libSM
    ];
    
  preConfigure = "autoconf";

  meta = {
    description = "KPhone is a SIP UA for Linux";
    homepage = http://sourceforge.net/projects/kphone/;
    license = "GPL";
    maintainers = [ stdenv.lib.maintainers.marcweber ];
    platforms = stdenv.lib.platforms.linux;
  };
}