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
32 lines
715 B
Nix
32 lines
715 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "openspin";
|
|
version = "unstable-2018-10-02";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "parallaxinc";
|
|
repo = "OpenSpin";
|
|
rev = "f3a587ed3e4f6a50b3c8d2022bbec5676afecedb";
|
|
sha256 = "1knkbzdanb60cwp7mggymkhd0167lh2sb1c00d1vhw7s0s1rj96n";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mv build/openspin $out/bin/openspin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Compiler for SPIN/PASM languages for Parallax Propeller MCU";
|
|
mainProgram = "openspin";
|
|
homepage = "https://github.com/parallaxinc/OpenSpin";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.redvers ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|