2021-01-22 03:25:31 -08:00
|
|
|
{ lib, stdenv, fetchurl, gawk }:
|
2009-03-03 05:27:40 -08:00
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
let startFPC = import ./binary.nix { inherit stdenv fetchurl; }; in
|
2009-03-03 05:27:40 -08:00
|
|
|
|
2009-07-14 02:08:05 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2020-09-03 03:49:11 -07:00
|
|
|
version = "3.2.0";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "fpc";
|
2007-08-11 13:55:40 -07:00
|
|
|
|
2008-01-30 09:20:48 -08:00
|
|
|
src = fetchurl {
|
2013-07-13 17:09:34 -07:00
|
|
|
url = "mirror://sourceforge/freepascal/fpcbuild-${version}.tar.gz";
|
2020-09-03 03:49:11 -07:00
|
|
|
sha256 = "0f38glyn3ffmqww432snhx2b8wyrq0yj1njkp4zh56lqrvm19fgr";
|
2009-03-03 05:27:40 -08:00
|
|
|
};
|
2007-08-11 13:55:40 -07:00
|
|
|
|
2010-07-28 04:55:54 -07:00
|
|
|
buildInputs = [ startFPC gawk ];
|
2020-04-01 13:39:28 -07:00
|
|
|
glibc = stdenv.cc.libc.out;
|
2007-08-11 13:55:40 -07:00
|
|
|
|
2020-09-03 03:49:11 -07:00
|
|
|
# Patch paths for linux systems. Other platforms will need their own patches.
|
|
|
|
patches = [
|
|
|
|
./mark-paths.patch # mark paths for later substitution in postPatch
|
|
|
|
];
|
|
|
|
postPatch = ''
|
|
|
|
# substitute the markers set by the mark-paths patch
|
|
|
|
substituteInPlace fpcsrc/compiler/systems/t_linux.pas --subst-var-by dynlinker-prefix "${glibc}"
|
|
|
|
substituteInPlace fpcsrc/compiler/systems/t_linux.pas --subst-var-by syslibpath "${glibc}/lib"
|
|
|
|
'';
|
2008-04-08 08:10:09 -07:00
|
|
|
|
2019-10-27 06:03:25 -07:00
|
|
|
makeFlags = [ "NOGDB=1" "FPC=${startFPC}/bin/fpc" ];
|
2009-02-26 07:14:17 -08:00
|
|
|
|
2019-10-27 06:03:25 -07:00
|
|
|
installFlags = [ "INSTALL_PREFIX=\${out}" ];
|
2018-08-19 15:20:07 -07:00
|
|
|
|
2009-03-03 05:27:40 -08:00
|
|
|
postInstall = ''
|
2010-01-15 02:43:21 -08:00
|
|
|
for i in $out/lib/fpc/*/ppc*; do
|
|
|
|
ln -fs $i $out/bin/$(basename $i)
|
|
|
|
done
|
2009-03-03 05:27:40 -08:00
|
|
|
mkdir -p $out/lib/fpc/etc/
|
2009-07-14 02:08:05 -07:00
|
|
|
$out/lib/fpc/*/samplecfg $out/lib/fpc/${version} $out/lib/fpc/etc/
|
2009-03-03 05:27:40 -08:00
|
|
|
'';
|
2007-08-11 13:55:40 -07:00
|
|
|
|
2014-08-31 11:47:45 -07:00
|
|
|
passthru = {
|
|
|
|
bootstrap = startFPC;
|
|
|
|
};
|
|
|
|
|
2021-01-22 03:25:31 -08:00
|
|
|
meta = with lib; {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "Free Pascal Compiler from a source distribution";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.freepascal.org";
|
2018-08-19 15:20:07 -07:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
platforms = platforms.linux;
|
2014-08-31 11:47:45 -07:00
|
|
|
inherit version;
|
2007-08-11 13:55:40 -07:00
|
|
|
};
|
2009-03-03 05:27:40 -08:00
|
|
|
}
|