14eeb7fb50
svn path=/nixpkgs/trunk/; revision=11491
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
args : with args;
|
|
rec {
|
|
src = fetchurl {
|
|
url = http://downloads.sourceforge.net/lazarus/lazarus-0.9.24-0.tar.gz;
|
|
sha256 = "0kkj1yycdbyrsw6c34gm5ya7q3256p8ph8j5a23x3qy86gbch827";
|
|
};
|
|
|
|
buildInputs = [fpc gtk glib libXi inputproto
|
|
libX11 xproto libXext xextproto gdkpixbuf
|
|
stdenv.gcc makeWrapper];
|
|
configureFlags = [];
|
|
makeFlags = [
|
|
"LAZARUS_INSTALL_DIR=$out/lazarus/"
|
|
"INSTALL_PREFIX=$out/"
|
|
"FPC=fpc"
|
|
"PP=fpc"
|
|
];
|
|
|
|
/* doConfigure should be specified separately */
|
|
phaseNames = ["preBuild" "doMakeInstall" "postInstall"];
|
|
|
|
preBuild = FullDepEntry (''
|
|
export NIX_LDFLAGS='-lXi -lX11 -lglib -lgtk -lgdk -lgdk_pixbuf -lc -lXext'
|
|
ensureDir $out/share
|
|
tar xf ${fpc.src} --strip-components=1 -C $out/share
|
|
sed -e 's@/usr/fpcsrc@'"$out/share/fpcsrc@" -i ide/include/unix/lazbaseconf.inc
|
|
'')
|
|
["minInit" "defEnsureDir" "doUnpack"];
|
|
|
|
postInstall = FullDepEntry (''
|
|
wrapProgram $out/bin/startlazarus --prefix NIX_LDFLAGS ' ' "'$NIX_LDFLAGS'"
|
|
'') ["doMakeInstall" "minInit" "defEnsureDir"];
|
|
|
|
name = "lazarus-0.9.24-0";
|
|
meta = {
|
|
description = "Lazarus graphical IDE for FreePascal language";
|
|
homepage = http://www.lazarus.freepascal.org ;
|
|
};
|
|
}
|