about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/cakelisp/default.nix
blob: 15afb9fc25ec7446711d9063d1d0ff54997b2e0c (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
{ lib, stdenv, fetchFromGitHub, gcc }:

stdenv.mkDerivation rec {
  pname = "cakelisp";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "makuto";
    repo = "cakelisp";
    rev = "v${version}";
    sha256 = "126va59jy7rvy6c2wrf8j44m307f2d8jixqkc49s9wllxprj1dmg";
  };

  buildInputs = [ gcc ];

  postPatch = ''
    substituteInPlace runtime/HotReloading.cake \
        --replace '"/usr/bin/g++"' '"${gcc}/bin/g++"'
    substituteInPlace src/ModuleManager.cpp \
        --replace '"/usr/bin/g++"' '"${gcc}/bin/g++"'
  '' + lib.optionalString stdenv.isDarwin ''
    substituteInPlace Build.sh --replace '--export-dynamic' '-export_dynamic'
    substituteInPlace runtime/HotReloading.cake --replace '--export-dynamic' '-export_dynamic'
    substituteInPlace Bootstrap.cake --replace '--export-dynamic' '-export_dynamic'
  '';

  buildPhase = ''
    ./Build.sh
  '';

  installPhase = ''
    install -Dm755 bin/cakelisp -t $out/bin
  '';

  meta = with lib; {
    description = "A performance-oriented Lisp-like language";
    homepage = "https://github.com/makuto/cakelisp";
    license = licenses.gpl3Plus;
    platforms = platforms.darwin ++ platforms.linux;
    maintainers = [ maintainers.sbond75 ];
  };
}