Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
980 B
Nix
44 lines
980 B
Nix
{
|
|
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 = "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 ];
|
|
};
|
|
}
|