mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Added my favourite IRC client konversation
svn path=/nixpkgs/trunk/; revision=11663
This commit is contained in:
parent
ddc5ab4472
commit
fda958f307
2 changed files with 22 additions and 0 deletions
16
pkgs/applications/networking/irc/konversation/default.nix
Normal file
16
pkgs/applications/networking/irc/konversation/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{stdenv, fetchurl, libX11, libXt, libXext, arts, qt, kdelibs, zlib, libpng, libjpeg, perl, expat}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "konversation-1.0.1";
|
||||
src = fetchurl {
|
||||
url = http://download.berlios.de/konversation/konversation-1.0.1.tar.bz2;
|
||||
sha256 = "8be736289c52c21fe5ada7dd153767abd5155424a510ab9781b9d2f585cc00fd";
|
||||
};
|
||||
buildInputs = [arts qt kdelibs libX11 libXt libXext zlib libpng libjpeg perl expat];
|
||||
postConfigure = '' for i in `find . -name Makefile`; do echo $i; sed -i -e "s|-L/usr/lib||g" -e "s|\-R \$(x_libraries)||g" $i; done '';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.konversation.org;
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
|
@ -5345,6 +5345,12 @@ let pkgs = rec {
|
|||
|
||||
kiwixBuilder = kiwixBuilderFun null;*/
|
||||
|
||||
konversation = import ../applications/networking/irc/konversation {
|
||||
inherit fetchurl stdenv perl arts kdelibs zlib libpng libjpeg expat;
|
||||
inherit (xlibs) libX11 libXt libXext;
|
||||
qt = qt3;
|
||||
};
|
||||
|
||||
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