about summary refs log tree commit diff
path: root/pkgs/development/compilers/crystal/build-package.nix
blob: 8ffa89a11b4ae888f36d57f1eae63c54e46c3847 (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
48
49
50
51
52
53
{ stdenv, lib, crystal, linkFarm, fetchFromGitHub }:
{ # Generate shards.nix with `nix-shell -p crystal2nix --run crystal2nix` in the projects root
  shardsFile ? null
  # Specify binaries to build in the form { foo.src = "src/foo.cr"; }
  # The default `crystal build` options can be overridden with { foo.options = [ "--no-debug" ]; }
, crystalBinaries ? {}
, ...
}@args:
let
  mkDerivationArgs = builtins.removeAttrs args [ "shardsFile" "crystalBinaries" ];

  crystalLib = linkFarm "crystal-lib" (lib.mapAttrsToList (name: value: {
    inherit name;
    path = fetchFromGitHub value;
  }) (import shardsFile));

  defaultOptions = [ "--release" "--progress" "--no-debug" "--verbose" ];

in stdenv.mkDerivation (mkDerivationArgs // {

  configurePhase = args.configurePhase or ''
    runHook preConfigure
    ${lib.optionalString (shardsFile != null) "ln -s ${crystalLib} lib"}
    runHook postConfigure
  '';

  buildInputs = args.buildInputs or [] ++ [ crystal ];

  buildPhase = args.buildPhase or ''
    runHook preBuild
    ${lib.concatStringsSep "\n" (lib.mapAttrsToList (bin: attrs: ''
      crystal ${lib.escapeShellArgs ([
        "build"
        "-o" bin
        (attrs.src or (throw "No source file for crystal binary ${bin} provided"))
      ] ++ attrs.options or defaultOptions)}
    '') crystalBinaries)}
    runHook postBuild
  '';

  installPhase = args.installPhase or ''
    runHook preInstall
    mkdir -p "$out/bin"
    ${lib.concatMapStringsSep "\n" (bin: ''
      mv ${lib.escapeShellArgs [ bin "${placeholder "out"}/bin/${bin}" ]}
    '') (lib.attrNames crystalBinaries)}
    runHook postInstall
  '';

  meta = args.meta or {} // {
    platforms = args.meta.platforms or crystal.meta.platforms;
  };
})