mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
silc_client: Missing file
This commit is contained in:
parent
aaf0a34f2a
commit
acf2979d9c
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user