add groff, needed for dhcp

svn path=/nixpkgs/trunk/; revision=3651
This commit is contained in:
Armijn Hemel 2005-08-21 13:59:04 +00:00
parent d6b17b5edc
commit 789a0ab393
2 changed files with 17 additions and 0 deletions

View file

@ -86,6 +86,10 @@ rec {
inherit fetchurl stdenv;
};
groff = (import ../tools/text/groff) {
inherit fetchurl stdenv;
};
enscript = (import ../tools/text/enscript) {
inherit fetchurl stdenv;
};
@ -160,6 +164,10 @@ rec {
inherit fetchurl stdenv python pygtk makeWrapper;
};
dhcp = (import ../tools/networking/dhcp) {
inherit fetchurl stdenv;
};
graphviz = (import ../tools/graphics/graphviz) {
inherit fetchurl stdenv libpng libjpeg expat x11 yacc libtool;
inherit (xlibs) libXaw;

View file

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "groff-1.19.1";
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/gnu/groff/groff-1.19.1.tar.gz;
md5 = "57d155378640c12a80642664dfdfc892";
};
}