* Added gperf, texinfo, ncurses.
* Started moving the gcc wrapper stuff out of stdenv. * Added octavefront and rna. svn path=/nixpkgs/trunk/; revision=814
This commit is contained in:
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#! /bin/sh -e
|
||||
|
||||
. $stdenv/setup
|
||||
|
||||
tar xvfz $src
|
||||
cd gperf-*
|
||||
./configure --prefix=$out
|
||||
make
|
||||
make install
|
||||
@@ -0,0 +1,12 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
derivation {
|
||||
name = "gperf-2.7.2";
|
||||
system = stdenv.system;
|
||||
builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.gnu.org/gnu/gperf/gperf-2.7.2.tar.gz;
|
||||
md5 = "e501acc2e18eed2c8f25ca0ac2330d68";
|
||||
};
|
||||
inherit stdenv;
|
||||
}
|
||||
Reference in New Issue
Block a user