nixpkgs/pkgs/development/tools/misc/octavefront/default.nix
Eelco Dolstra 287edecf42 * Added gperf, texinfo, ncurses.
* Started moving the gcc wrapper stuff out of stdenv.
* Added octavefront and rna.

svn path=/nixpkgs/trunk/; revision=814
2004-03-05 10:13:23 +00:00

20 lines
558 B
Nix

{ stdenv, fetchurl, autoconf, g77, texinfo, bison, flex, gperf
, rna, aterm
}:
assert autoconf != null && texinfo != null
&& bison != null && flex != null && gperf != null
&& rna != null && aterm != null;
assert g77.langF77;
derivation {
name = "octavefront-0.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.radionetworkprocessor.com/pub/radionetworkprocessor/octavefront-0.2.tar.gz;
md5 = "14e02d060fd6afc6752dbba0a7445ff2";
};
inherit stdenv autoconf g77 texinfo bison flex gperf rna aterm;
}