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
+11
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];
}