mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
40 lines
1 KiB
Nix
40 lines
1 KiB
Nix
{
|
|
installShellFiles
|
|
, fetchFromGitHub
|
|
, lib
|
|
, micronucleus
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "elf2nucleus";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kpcyrd";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-FAIOtGfGow+0DrPPEBEfvaiinNZLQlGWKJ4DkMj63OA=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-IeQnI6WTzxSI/VzoHtVukZtB1jX98wzLOT01NMLD5wQ=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = [ micronucleus ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd elf2nucleus \
|
|
--bash <($out/bin/elf2nucleus --completions bash) \
|
|
--fish <($out/bin/elf2nucleus --completions fish) \
|
|
--zsh <($out/bin/elf2nucleus --completions zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Integrate micronucleus into the cargo buildsystem, flash an AVR firmware from an elf file";
|
|
mainProgram = "elf2nucleus";
|
|
homepage = "https://github.com/kpcyrd/elf2nucleus";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ maintainers.marble ];
|
|
};
|
|
}
|