287edecf42
* Started moving the gcc wrapper stuff out of stdenv. * Added octavefront and rna. svn path=/nixpkgs/trunk/; revision=814
14 lines
302 B
Nix
14 lines
302 B
Nix
{stdenv, fetchurl, ncurses}:
|
|
|
|
assert ncurses != null;
|
|
|
|
derivation {
|
|
name = "texinfo-4.6";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = ftp://ftp.gnu.org/gnu/texinfo/texinfo-4.6.tar.gz;
|
|
md5 = "5730c8c0c7484494cca7a7e2d7459c64";
|
|
};
|
|
inherit stdenv ncurses;
|
|
}
|