nixpkgs/pkgs/development/libraries/rna/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

15 lines
321 B
Nix

{stdenv, fetchurl, zlib}:
assert zlib != null;
derivation {
name = "rna-0.14c";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.radionetworkprocessor.com/pub/radionetworkprocessor/rna-0.14c.tar.gz;
md5 = "1e2947caf8a680e93cac55bffe2d6ec6";
};
inherit stdenv zlib;
}