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

stdenv.mkDerivation rec {
  pname = "microscheme";
  version = "0.9.3";

  src = fetchFromGitHub {
    owner = "ryansuchocki";
    repo = "microscheme";
    rev = "v${version}";
    sha256 = "5qTWsBCfj5DCZ3f9W1bdo6WAc1DZqVxg8D7pwC95duQ=";
  };

  postPatch = ''
    substituteInPlace makefile --replace gcc ${stdenv.cc.targetPrefix}cc
  '';

  nativeBuildInputs = [ makeWrapper unixtools.xxd ];

  makeFlags = [ "PREFIX=${placeholder "out"}" ];

  meta = with lib; {
    homepage = "https://ryansuchocki.github.io/microscheme/";
    description = "A Scheme subset for Atmel microcontrollers";
    mainProgram = "microscheme";
    longDescription = ''
      Microscheme is a Scheme subset/variant designed for Atmel
      microcontrollers, especially as found on Arduino boards.
    '';
    license = licenses.mit;
    platforms = platforms.all;
    maintainers = with maintainers; [ ardumont ];
  };
}