1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

silc_client: Missing file

This commit is contained in:
Lluís Batlle i Rossell 2013-04-12 23:41:09 +02:00
parent aaf0a34f2a
commit acf2979d9c

View file

@ -0,0 +1,29 @@
{ stdenv, fetchurl, perl, pkgconfig, glib, ncurses
, enablePlugin ? true }:
stdenv.mkDerivation rec {
name = "silc-client-1.1.8" + stdenv.lib.optionalString enablePlugin "-irssi-plugin";
src = fetchurl {
url = "http://silcnet.org/download/server/sources/${name}.tar.bz2";
sha256 = "1qnk35g8sbnfps3bq2k9sy0ymlsijh5n8z59m2ccq4pkmqbfqgv2";
};
dontDisableStatic = true;
patches = [ ./server_setup.patch ];
preConfigure = stdenv.lib.optionalString enablePlugin ''
configureFlags="$configureFlags --with-silc-plugin=$out/lib/irssi"
'';
buildInputs = [ perl pkgconfig glib ncurses ];
meta = {
homepage = http://silcnet.org/;
description = "Secure Internet Live Conferencing server";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}