mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
add groff, needed for dhcp
svn path=/nixpkgs/trunk/; revision=3651
This commit is contained in:
parent
d6b17b5edc
commit
789a0ab393
@ -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;
|
||||
|
9
pkgs/tools/text/groff/default.nix
Normal file
9
pkgs/tools/text/groff/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user