nixpkgs/pkgs/development/misc/stm32/inav/default.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, gcc-arm-embedded, binutils-arm-embedded, ruby
2018-05-22 16:51:19 +00:00
}:
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2018-05-22 16:51:19 +00:00
2019-08-13 21:52:01 +00:00
pname = "inav";
2021-07-14 15:10:11 +00:00
version = "2.0.0-rc2";
2018-05-22 16:51:19 +00:00
src = fetchFromGitHub {
owner = "iNavFlight";
repo = "inav";
rev = "a8415e89c2956d133d8175827c079bcf3bc3766c"; # Always use a commit id here!
sha256 = "15zai8qf43b06fmws1sbkmdgip51zp7gkfj7pp9b6gi8giarzq3y";
};
nativeBuildInputs = [
gcc-arm-embedded binutils-arm-embedded
2018-05-22 16:51:19 +00:00
ruby
];
postPatch = ''
sed -ri "s/REVISION.*=.*shell git.*/REVISION = ${builtins.substring 0 10 src.rev}/" Makefile # Simulate abbrev'd rev.
sed -ri "s/-j *[0-9]+//" Makefile # Eliminate parallel build args in submakes
sed -ri "s/binary hex/hex/" Makefile # No need for anything besides .hex
2018-11-02 20:30:10 +00:00
substituteInPlace Makefile \
2018-11-02 20:30:10 +00:00
--replace "--specs=nano.specs" ""
2018-05-22 16:51:19 +00:00
'';
enableParallelBuilding = true;
preBuild = ''
buildFlagsArray=(
all
)
'';
installPhase = ''
runHook preInstall
mkdir -p $out
cp obj/*.hex $out
runHook postInstall
'';
meta = with lib; {
2018-05-22 16:51:19 +00:00
description = "Navigation-enabled flight control software";
homepage = "https://inavflight.github.io";
2018-05-22 16:51:19 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ elitak ];
broken = true;
2018-05-22 16:51:19 +00:00
};
}