Files
nixpkgs/pkgs/development/compilers/fpc/binary.nix
T

17 lines
393 B
Nix
Raw Normal View History

2008-01-30 17:20:48 +00:00
args: with args;
2008-01-30 17:20:48 +00:00
stdenv.mkDerivation {
name = "fpc-2.2.2-binary";
2007-08-11 20:55:40 +00:00
2008-01-30 17:20:48 +00:00
src = fetchurl {
url = ftp://ftp.chg.ru/pub/lang/pascal/fpc/dist/i386-linux-2.2.2/fpc-2.2.2.i386-linux.tar;
sha256 = "8c18f63b36a76eee673f96ca254c49c5a42bcf3e36279abe8774f961792449a5";
};
2007-08-11 20:55:40 +00:00
builder = ./binary-builder.sh;
meta = {
description = "Free Pascal Compiler from a binary distribution";
2007-08-11 20:55:40 +00:00
};
}