about summary refs log tree commit diff
path: root/pkgs/development/compilers/fpc/binary.nix
blob: e4c8a2358fc8da7af5d8b8971d8ade23775c8d70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{ stdenv, fetchurl, undmg, cpio, xar, lib }:

stdenv.mkDerivation rec {
  pname = "fpc-binary";
  version = "3.2.2";

  src =
    if stdenv.hostPlatform.system == "i686-linux" then
      fetchurl {
        url = "mirror://sourceforge/project/freepascal/Linux/${version}/fpc-${version}.i386-linux.tar";
        sha256 = "f62980ac0b2861221f79fdbff67836aa6912a4256d4192cfa4dfa0ac5b419958";
      }
    else if stdenv.hostPlatform.system == "x86_64-linux" then
      fetchurl {
        url = "mirror://sourceforge/project/freepascal/Linux/${version}/fpc-${version}.x86_64-linux.tar";
        sha256 = "5adac308a5534b6a76446d8311fc340747cbb7edeaacfe6b651493ff3fe31e83";
      }
    else if stdenv.hostPlatform.system == "aarch64-linux" then
      fetchurl {
        url = "mirror://sourceforge/project/freepascal/Linux/${version}/fpc-${version}.aarch64-linux.tar";
        sha256 = "b39470f9b6b5b82f50fc8680a5da37d2834f2129c65c24c5628a80894d565451";
      }
    else if stdenv.isDarwin then
      fetchurl {
        url = "mirror://sourceforge/project/freepascal/Mac%20OS%20X/${version}/fpc-${version}.intelarm64-macosx.dmg";
        sha256 = "05d4510c8c887e3c68de20272abf62171aa5b2ef1eba6bce25e4c0bc41ba8b7d";
      }
    else throw "Not supported on ${stdenv.hostPlatform.system}.";


  nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
    undmg
    xar
    cpio
  ];

  builder =
    if stdenv.hostPlatform.isLinux then
      ./binary-builder.sh
    else if stdenv.hostPlatform.isDarwin then
      ./binary-builder-darwin.sh
    else throw "Not supported on ${stdenv.hostPlatform}.";

  meta = {
    description = "Free Pascal Compiler from a binary distribution";
  };
}