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;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
### DEVELOPMENT / DEBUGGERS
|
||||||
|
|
||||||
|
ltrace = (import ../development/debuggers/ltrace) {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
### DEVELOPMENT / INTERPRETERS
|
### DEVELOPMENT / INTERPRETERS
|
||||||
|
|
||||||
happy = (import ../development/tools/parsing/happy) {
|
happy = (import ../development/tools/parsing/happy) {
|
||||||
|
@ -630,6 +636,10 @@ rec {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tcl = (import ../development/interpreters/tcl) {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
dylan = (import ../development/compilers/gwydion-dylan) {
|
dylan = (import ../development/compilers/gwydion-dylan) {
|
||||||
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
inherit fetchurl stdenv perl boehmgc yacc flex readline;
|
||||||
dylan =
|
dylan =
|
||||||
|
@ -1615,6 +1625,11 @@ rec {
|
||||||
inherit (gtkLibs) glib gtk;
|
inherit (gtkLibs) glib gtk;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xchat = (import ../applications/networking/irc/xchat) {
|
||||||
|
inherit fetchurl stdenv pkgconfig tcl;
|
||||||
|
inherit (gtkLibs) glib;
|
||||||
|
};
|
||||||
|
|
||||||
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
cdparanoiaIII = (import ../applications/audio/cdparanoia) {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue