65 lines
2.1 KiB
Nix
65 lines
2.1 KiB
Nix
{ stdenv, fetchFromGitHub, jdk, jre, ant, coreutils, gnugrep, file, libusb
|
|
, withGui ? false, gtk2 ? null
|
|
}:
|
|
|
|
assert withGui -> gtk2 != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.6";
|
|
name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arduino";
|
|
repo = "Arduino";
|
|
rev = "${version}";
|
|
sha256 = "0nr5b719qi03rcmx6swbhccv6kihxz3b8b6y46bc2j348rja5332";
|
|
};
|
|
|
|
buildInputs = [ jdk ant file ];
|
|
|
|
buildPhase = ''
|
|
cd ./core && ant
|
|
cd ../build && ant
|
|
cd ..
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/arduino
|
|
cp -r ./build/linux/work/* "$out/share/arduino/"
|
|
echo ${version} > $out/share/arduino/lib/version.txt
|
|
|
|
${stdenv.lib.optionalString withGui ''
|
|
mkdir -p "$out/bin"
|
|
sed -i -e "s|^java|${jdk}/bin/java|" "$out/share/arduino/arduino"
|
|
sed -i -e "s|^LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${gtk2}/lib:|" "$out/share/arduino/arduino"
|
|
ln -sr "$out/share/arduino/arduino" "$out/bin/arduino"
|
|
''}
|
|
|
|
# Fixup "/lib64/ld-linux-x86-64.so.2" like references in ELF executables.
|
|
echo "running patchelf on prebuilt binaries:"
|
|
find "$out" | while read filepath; do
|
|
if file "$filepath" | grep -q "ELF.*executable"; then
|
|
# skip target firmware files
|
|
if echo "$filepath" | grep -q "\.elf$"; then
|
|
continue
|
|
fi
|
|
echo "setting interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) in $filepath"
|
|
patchelf --set-interpreter "$(cat "$NIX_CC"/nix-support/dynamic-linker)" "$filepath"
|
|
test $? -eq 0 || { echo "patchelf failed to process $filepath"; exit 1; }
|
|
fi
|
|
done
|
|
|
|
patchelf --set-rpath ${stdenv.lib.makeSearchPath "lib" [ libusb ]} \
|
|
"$out/share/arduino/hardware/tools/avrdude"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open-source electronics prototyping platform";
|
|
homepage = http://arduino.cc/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ antono robberer bjornfor ];
|
|
};
|
|
}
|