1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/compilers/fpc/binary.nix

18 lines
379 B
Nix
Raw Normal View History

args: with args;
stdenv.mkDerivation {
name = "fpc-2.0.4-binary";
src = fetchurl {
url = ftp://ftp.chg.ru/pub/lang/pascal/fpc/dist/i386-linux-2.0.4/fpc-2.0.4.i386-linux.tar;
sha256 = "0b2szv2anbf58h4i5mlph93afv9qdx6i0jqggba04d3anjbl9gfy";
};
builder = ./binary-builder.sh;
meta = {
description = "
Free Pascal Compiler from a binary distribution.
";
};
}