3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/compilers/avra/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
542 B
Nix
Raw Normal View History

2022-01-20 18:25:45 +00:00
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "avra";
2022-01-20 18:25:45 +00:00
version = "1.4.2";
2022-01-20 18:25:45 +00:00
src = fetchFromGitHub {
owner = "Ro5bert";
repo = pname;
rev = version;
hash = "sha256-joOj89WZ9Si5fcu1w1VHj5fOcnB9N2313Yb29A+nCCY=";
};
2022-01-20 18:25:45 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2022-01-20 18:25:45 +00:00
doCheck = true;
meta = with lib; {
2017-11-10 21:48:33 +00:00
description = "Assembler for the Atmel AVR microcontroller family";
2022-01-20 18:25:45 +00:00
homepage = "https://github.com/Ro5bert/avra";
license = licenses.gpl2Plus;
platforms = platforms.all;
};
}