2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, autoreconfHook, buildPackages
|
2018-08-16 20:24:42 +01:00
|
|
|
, fetchurl, flex, readline, ed, texinfo
|
|
|
|
}:
|
2005-10-10 01:55:07 +01:00
|
|
|
|
2010-10-05 23:08:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-02-12 04:07:47 +00:00
|
|
|
pname = "bc";
|
|
|
|
version = "1.07.1";
|
2005-10-10 01:55:07 +01:00
|
|
|
src = fetchurl {
|
2021-02-12 04:07:47 +00:00
|
|
|
url = "mirror://gnu/bc/${pname}-${version}.tar.gz";
|
2017-04-23 21:15:31 +01:00
|
|
|
sha256 = "62adfca89b0a1c0164c2cdca59ca210c1d44c3ffc46daf9931cf4942664cb02a";
|
2005-10-10 01:55:07 +01:00
|
|
|
};
|
|
|
|
|
2010-10-05 23:08:37 +01:00
|
|
|
configureFlags = [ "--with-readline" ];
|
2009-04-08 08:29:42 +01:00
|
|
|
|
2017-10-17 14:49:54 +01:00
|
|
|
# As of 1.07 cross-compilation is quite complicated as the build system wants
|
|
|
|
# to build a code generator, bc/fbc, on the build machine.
|
|
|
|
patches = [ ./cross-bc.patch ];
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [
|
|
|
|
# Tools
|
|
|
|
autoreconfHook ed flex texinfo
|
|
|
|
# Libraries for build
|
|
|
|
buildPackages.readline buildPackages.ncurses
|
|
|
|
];
|
2018-11-19 22:05:33 +00:00
|
|
|
buildInputs = [ readline flex ];
|
2010-09-27 12:19:31 +01:00
|
|
|
|
2017-10-17 14:49:54 +01:00
|
|
|
doCheck = true; # not cross
|
|
|
|
|
|
|
|
# Hack to make sure we never to the relaxation `$PATH` and hooks support for
|
|
|
|
# compatability. This will be replaced with something clearer in a future
|
|
|
|
# masss-rebuild.
|
2018-05-13 16:31:24 +01:00
|
|
|
strictDeps = true;
|
2010-10-05 23:08:37 +01:00
|
|
|
|
2021-02-12 04:07:47 +00:00
|
|
|
meta = with lib; {
|
2010-09-27 12:19:31 +01:00
|
|
|
description = "GNU software calculator";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/bc/";
|
2021-02-12 04:07:47 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2010-09-27 12:19:31 +01:00
|
|
|
};
|
2005-10-10 01:55:07 +01:00
|
|
|
}
|