From b80756391a007bf7cabd89ca5aedb649068c7c42 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Tue, 22 Nov 2005 12:05:36 +0000 Subject: [PATCH] add xchat and tcl svn path=/nixpkgs/trunk/; revision=4302 --- pkgs/system/all-packages-generic.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix index c36d7dc6ed3..2ebea84fe45 100644 --- a/pkgs/system/all-packages-generic.nix +++ b/pkgs/system/all-packages-generic.nix @@ -606,6 +606,12 @@ rec { inherit fetchurl stdenv; }; + ### DEVELOPMENT / DEBUGGERS + + ltrace = (import ../development/debuggers/ltrace) { + inherit fetchurl stdenv; + }; + ### DEVELOPMENT / INTERPRETERS happy = (import ../development/tools/parsing/happy) { @@ -630,6 +636,10 @@ rec { inherit fetchurl stdenv; }; + tcl = (import ../development/interpreters/tcl) { + inherit fetchurl stdenv; + }; + dylan = (import ../development/compilers/gwydion-dylan) { inherit fetchurl stdenv perl boehmgc yacc flex readline; dylan = @@ -1615,6 +1625,11 @@ rec { inherit (gtkLibs) glib gtk; }; + xchat = (import ../applications/networking/irc/xchat) { + inherit fetchurl stdenv pkgconfig tcl; + inherit (gtkLibs) glib; + }; + cdparanoiaIII = (import ../applications/audio/cdparanoia) { inherit fetchurl stdenv; };