feat: use nixfmt

This commit is contained in:
2024-03-26 17:44:14 +01:00
parent 59e6ed992a
commit 3ad3491970
29 changed files with 444 additions and 558 deletions

View File

@@ -1,9 +1,4 @@
{
stdenv,
fetchFromGitHub,
glibc,
lib,
}:
{ stdenv, fetchFromGitHub, glibc, lib, }:
stdenv.mkDerivation {
name = "lpc21isp";
src = fetchFromGitHub {
@@ -12,16 +7,17 @@ stdenv.mkDerivation {
rev = "cf89d0b122ef02358e0f130b8f32cb804c11a54e";
hash = "sha256-BZvtJMtVyqsCPVhp/QL5cXJY8Q25T/RzYzHMutE24hk=";
};
nativeBuildInputs = [glibc.static];
nativeBuildInputs = [ glibc.static ];
installPhase = ''
mkdir -p $out/bin
cp lpc21isp $out/bin
'';
meta = with lib; {
description = "Portable command line ISP for NXP LPC family and Analog Devices ADUC70xx";
description =
"Portable command line ISP for NXP LPC family and Analog Devices ADUC70xx";
homepage = "https://github.com/capiman/lpc21isp";
license = licenses.lgpl3Plus;
maintainers = [maintainers.theaninova];
maintainers = [ maintainers.theaninova ];
mainProgram = "lpc21isp";
};
}