Added bc :P
svn path=/nixpkgs/trunk/; revision=4045
This commit is contained in:
parent
4f21598f2f
commit
085518614c
2 changed files with 17 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
|
||||
|
|
11
pkgs/tools/misc/bc/default.nix
Normal file
11
pkgs/tools/misc/bc/default.nix
Normal 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];
|
||||
}
|
Loading…
Reference in a new issue