add xchat and tcl
svn path=/nixpkgs/trunk/; revision=4302
This commit is contained in:
parent
6ec2dea85c
commit
b80756391a
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue