My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/compilers/openspin/default.nix

26 lines
678 B

{ 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";
homepage = "https://github.com/parallaxinc/OpenSpin";
license = licenses.mit;
maintainers = [ maintainers.redvers ];
platforms = platforms.all;
};
}