2019-06-16 21:59:06 +02:00
|
|
|
{ stdenv, fetchFromGitHub, libelf, which, pkgconfig, freeglut
|
|
|
|
, avrgcc, avrlibc
|
2019-11-10 17:44:34 +01:00
|
|
|
, libGLU, libGL
|
2018-12-11 00:25:35 +01:00
|
|
|
, GLUT }:
|
2016-05-24 23:18:03 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "simavr";
|
2017-03-01 18:01:40 +01:00
|
|
|
version = "1.5";
|
2016-05-24 23:18:03 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "buserror";
|
|
|
|
repo = "simavr";
|
2017-03-01 18:01:40 +01:00
|
|
|
rev = "e0d4de41a72520491a4076b3ed87beb997a395c0";
|
|
|
|
sha256 = "0b2lh6l2niv80dmbm9xkamvnivkbmqw6v97sy29afalrwfxylxla";
|
2016-05-24 23:18:03 +02:00
|
|
|
};
|
|
|
|
|
2018-12-11 00:25:35 +01:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX="
|
|
|
|
"AVR_ROOT=${avrlibc}/avr"
|
|
|
|
"SIMAVR_VERSION=${version}"
|
|
|
|
"AVR=avr-"
|
|
|
|
];
|
2016-05-24 23:18:03 +02:00
|
|
|
|
2019-11-03 14:14:32 +01:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-truncation" ];
|
|
|
|
|
2018-12-11 00:25:35 +01:00
|
|
|
nativeBuildInputs = [ which pkgconfig avrgcc ];
|
2019-11-10 17:44:34 +01:00
|
|
|
buildInputs = [ libelf freeglut libGLU libGL ]
|
2018-12-11 00:25:35 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin GLUT;
|
2018-10-12 22:21:26 +02:00
|
|
|
|
2017-05-18 11:39:00 +02:00
|
|
|
# Hack to avoid TMPDIR in RPATHs.
|
|
|
|
preFixup = ''rm -rf "$(pwd)" && mkdir "$(pwd)" '';
|
|
|
|
|
2018-12-11 00:25:35 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "-C tests run_tests";
|
2016-05-24 23:18:03 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lean and mean Atmel AVR simulator";
|
|
|
|
homepage = https://github.com/buserror/simavr;
|
|
|
|
license = licenses.gpl3;
|
2018-12-11 00:25:35 +01:00
|
|
|
platforms = platforms.unix;
|
2016-05-24 23:18:03 +02:00
|
|
|
maintainers = with maintainers; [ goodrone ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|