* octavefront removed

* rna removed
* octave-2.1.57 added

svn path=/nixpkgs/trunk/; revision=1228
This commit is contained in:
Rob Vermaas
2004-08-05 13:05:38 +00:00
parent a53a262a0c
commit a4215841ac
7 changed files with 21 additions and 56 deletions

View File

@@ -1,15 +0,0 @@
buildinputs="$zlib"
. $stdenv/setup
export NIX_STRIP_DEBUG=
export NIX_CFLAGS_COMPILE="-g $NIX_CFLAGS_COMPILE"
tar xvfz $src
cd rna-*
./configure --prefix=$out
make
make install
strip -S $out/lib/*.a
mkdir $out/nix-support
echo "$zlib" > $out/nix-support/propagated-build-inputs

View File

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