1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 04:02:10 +00:00

Merge pull request #5582 from devhell/profanity.

This add profanity and dependencies and a few cleanups from me for the
profanity package expression.

Thanks to @devhell and apologies for pestering him with my nitpicking.

* Commit summary:
  profanity: Add option for autoAwaySupport.
  profanity: Clean up package expression file.
  profanity: Add libnotifySupport config option
  all-packages: Add libnotify option to profanity
  profanity: Add "platforms" meta information
  profanity: Add libXScrnSaver and libX11 buildInputs
  libstrophe: Add "platforms" meta information
  libstrophe: Fix typo
  profanity: Add profanity, a ncurses XMPP client
  libstrophe: Add new package
This commit is contained in:
aszlig 2015-01-05 08:33:11 +01:00
commit 0d12020a3f
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961
3 changed files with 82 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv, fetchurl, automake, autoconf, pkgconfig, glib, openssl, expat
, ncurses, libotr, curl, libstrophe
, autoAwaySupport ? false, libXScrnSaver ? null, libX11 ? null
, notifySupport ? false, libnotify ? null, gdk_pixbuf ? null
}:
assert autoAwaySupport -> libXScrnSaver != null && libX11 != null;
assert notifySupport -> libnotify != null && gdk_pixbuf != null;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "profanity-${version}";
version = "0.4.5";
src = fetchurl {
url = "http://www.profanity.im/profanity-${version}.tar.gz";
sha256 = "0qzwqxcxf695z3gf94psd2x619vlp4hkkjmkrpsla1ns0f6v6dkl";
};
buildInputs = [
automake autoconf pkgconfig
glib openssl expat ncurses libotr curl libstrophe
] ++ optionals autoAwaySupport [ libXScrnSaver libX11 ]
++ optionals notifySupport [ libnotify gdk_pixbuf ];
preConfigure = "sh bootstrap.sh";
meta = {
description = "A console based XMPP client";
longDescription = ''
Profanity is a console based XMPP client written in C using ncurses and
libstrophe, inspired by Irssi.
'';
homepage = http://profanity.im/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.devhell ];
};
}

View file

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
stdenv.mkDerivation rec {
name = "libstrophe-${version}";
version = "0.8.7";
src = fetchFromGitHub {
owner = "strophe";
repo = "libstrophe";
rev = version;
sha256 = "1iic8xbcxh21dzns8m9kkz0cj5f3ppn414gnhyh4y2wcjsz6hp8l";
};
buildInputs = [ automake autoconf openssl expat libtool pkgconfig check ];
dontDisableStatic = true;
preConfigure = "mkdir m4 && sh bootstrap.sh";
doCheck = true;
meta = {
description = "A simple, lightweight C library for writing XMPP clients";
longDescription = ''
libstrophe is a lightweight XMPP client library written in C. It has
minimal dependencies and is configurable for various environments. It
runs well on both Linux, Unix, and Windows based platforms.
'';
homepage = http://strophe.im/libstrophe/;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.devhell ];
};
}

View file

@ -6232,6 +6232,8 @@ let
libstartup_notification = callPackage ../development/libraries/startup-notification { };
libstrophe = callPackage ../development/libraries/libstrophe { };
libspatialindex = callPackage ../development/libraries/libspatialindex { };
libspatialite = callPackage ../development/libraries/libspatialite { };
@ -10715,6 +10717,11 @@ let
# And I don't want to rewrite all rules
procmail = callPackage ../applications/misc/procmail { };
profanity = callPackage ../applications/networking/instant-messengers/profanity {
notifySupport = config.profanity.notifySupport or true;
autoAwaySupport = config.profanity.autoAwaySupport or true;
};
pstree = callPackage ../applications/misc/pstree { };
pulseview = callPackage ../applications/science/electronics/pulseview { };