about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/pixie/dust.nix
blob: e6818cb03ed22da1155b7db8413f2c81c399eba9 (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
{ lib, stdenv, pixie, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "dust-0-91";
  src = fetchFromGitHub {
    owner = "pixie-lang";
    repo = "dust";
    rev = "efe469661e749a71e86858fd006f61464810575a";
    sha256 = "09n57b6haxwask9m8vimv42ikczf7lgfc7m9izjrcqgs0padvfzc";
  };
  buildInputs = [ pixie ];
  patches = [ ./make-paths-configurable.patch ];
  configurePhase = ''
    pixiePath="${pixie}/bin/pixie-vm" \
    basePath="$out/share/dust" \
      substituteAll dust.in dust
    chmod +x dust
  '';
# FIXME: AOT for dust
#  buildPhase = ''
#    find . -name "*.pxi" -exec pixie-vm -c {} \;
#  '';
  installPhase = ''
    mkdir -p $out/bin $out/share/dust
    cp -a src/ run.pxi $out/share/dust
    mv dust $out/bin/dust
  '';

  meta = {
    description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies";
    homepage = src.meta.homepage;
    license = lib.licenses.lgpl3;
    platforms = lib.platforms.linux ++ lib.platforms.darwin;
  };
}