simavr: init at 1.3

Closes https://github.com/NixOS/nixpkgs/pull/15961
This commit is contained in:
Andrey Trachenko 2016-05-24 21:18:03 +00:00 committed by Joachim Fasting
parent bd6584277d
commit 67e732d8f8
No known key found for this signature in database
GPG key ID: 7544761007FE4E08
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, avrgcclibc, libelf, which, git, pkgconfig, freeglut
, mesa }:
stdenv.mkDerivation rec {
name = "simavr-${version}";
version = "1.3";
enableParallelBuilding = true;
src = fetchFromGitHub {
owner = "buserror";
repo = "simavr";
rev = "51d5fa69f9bc3d62941827faec02f8fbc7e187ab";
sha256 = "0k8xwzw9i6xsmf98q43fxhphq0wvflvmzqma1n4jd1ym9wi48lfx";
};
buildFlags = "AVR_ROOT=${avrgcclibc}/avr SIMAVR_VERSION=${version}";
installFlags = buildFlags + " DESTDIR=$(out)";
postFixup = ''
target="$out/bin/simavr"
patchelf --set-rpath "$(patchelf --print-rpath "$target"):$out/lib" "$target"
'';
buildInputs = [ which git avrgcclibc libelf pkgconfig freeglut mesa ];
meta = with stdenv.lib; {
description = "A lean and mean Atmel AVR simulator";
homepage = https://github.com/buserror/simavr;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ goodrone ];
};
}

View file

@ -9007,6 +9007,8 @@ in
silgraphite = callPackage ../development/libraries/silgraphite {};
graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};
simavr = callPackage ../development/tools/simavr { };
simgear = callPackage ../development/libraries/simgear { };
simp_le = callPackage ../tools/admin/simp_le { };