2010-07-28 11:55:54 +00:00
|
|
|
{ stdenv, fetchurl, gawk }:
|
2009-03-03 13:27:40 +00:00
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
let startFPC = import ./binary.nix { inherit stdenv fetchurl; }; in
|
2009-03-03 13:27:40 +00:00
|
|
|
|
2009-07-14 09:08:05 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-01 20:39:28 +00:00
|
|
|
version = "3.0.4";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fpc";
|
2007-08-11 20:55:40 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2013-07-14 03:09:34 +03:00
|
|
|
url = "mirror://sourceforge/freepascal/fpcbuild-${version}.tar.gz";
|
2020-04-01 20:39:28 +00:00
|
|
|
sha256 = "0xjyhlhz846jbnp12y68c7nq4xmp4i65akfbrjyf3r62ybk18rgn";
|
2009-03-03 13:27:40 +00:00
|
|
|
};
|
2007-08-11 20:55:40 +00:00
|
|
|
|
2010-07-28 11:55:54 +00:00
|
|
|
buildInputs = [ startFPC gawk ];
|
2020-04-01 20:39:28 +00:00
|
|
|
glibc = stdenv.cc.libc.out;
|
2007-08-11 20:55:40 +00:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
preConfigure =
|
2018-08-20 15:11:29 -04:00
|
|
|
if stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux" then ''
|
2009-03-03 13:27:40 +00:00
|
|
|
sed -e "s@'/lib/ld-linux[^']*'@'''@" -i fpcsrc/compiler/systems/t_linux.pas
|
2010-11-10 16:38:22 +00:00
|
|
|
sed -e "s@'/lib64/ld-linux[^']*'@'''@" -i fpcsrc/compiler/systems/t_linux.pas
|
2020-04-01 20:39:28 +00:00
|
|
|
sed -e "s@/lib64[^']*@${glibc}/lib@" -i fpcsrc/compiler/systems/t_linux.pas
|
2009-03-03 13:27:40 +00:00
|
|
|
'' else "";
|
2008-04-08 15:10:09 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "NOGDB=1" "FPC=${startFPC}/bin/fpc" ];
|
2009-02-26 15:14:17 +00:00
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
installFlags = [ "INSTALL_PREFIX=\${out}" ];
|
2018-08-20 00:20:07 +02:00
|
|
|
|
2009-03-03 13:27:40 +00:00
|
|
|
postInstall = ''
|
2010-01-15 10:43:21 +00:00
|
|
|
for i in $out/lib/fpc/*/ppc*; do
|
|
|
|
ln -fs $i $out/bin/$(basename $i)
|
|
|
|
done
|
2009-03-03 13:27:40 +00:00
|
|
|
mkdir -p $out/lib/fpc/etc/
|
2009-07-14 09:08:05 +00:00
|
|
|
$out/lib/fpc/*/samplecfg $out/lib/fpc/${version} $out/lib/fpc/etc/
|
2009-03-03 13:27:40 +00:00
|
|
|
'';
|
2007-08-11 20:55:40 +00:00
|
|
|
|
2014-08-31 22:47:45 +04:00
|
|
|
passthru = {
|
|
|
|
bootstrap = startFPC;
|
|
|
|
};
|
|
|
|
|
2018-08-20 00:20:07 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 13:27:40 +00:00
|
|
|
description = "Free Pascal Compiler from a source distribution";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://www.freepascal.org";
|
2018-08-20 00:20:07 +02:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
platforms = platforms.linux;
|
2014-08-31 22:47:45 +04:00
|
|
|
inherit version;
|
2007-08-11 20:55:40 +00:00
|
|
|
};
|
2009-03-03 13:27:40 +00:00
|
|
|
}
|