Added bc :P

svn path=/nixpkgs/trunk/; revision=4045
This commit is contained in:
Martin Bravenboer 2005-10-10 00:55:07 +00:00
parent 4f21598f2f
commit 085518614c
2 changed files with 17 additions and 1 deletions

View file

@ -35,6 +35,10 @@ rec {
### TOOLS
bc = (import ../tools/misc/bc) {
inherit fetchurl stdenv flex;
};
coreutils = (import ../tools/misc/coreutils) {
inherit fetchurl stdenv;
};
@ -639,7 +643,8 @@ rec {
};
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
inherit fetchurl stdenv jdk;
inherit fetchurl stdenv;
jdk = j2sdk14x;
name = "ant-jdk-1.4.2";
};

View file

@ -0,0 +1,11 @@
{stdenv, fetchurl, flex}:
stdenv.mkDerivation {
name = "bc-1.0.6";
src = fetchurl {
url = http://ftp.gnu.org/pub/gnu/bc/bc-1.06.tar.gz;
md5 = "d44b5dddebd8a7a7309aea6c36fda117";
};
buildInputs = [flex];
}