style: ~apply alejandra

This commit is contained in:
zerosummed
2025-04-17 03:57:54 +03:00
parent 6dc09c55f0
commit 8f5c89f6ce
7 changed files with 299 additions and 234 deletions
+9 -4
View File
@@ -1,12 +1,17 @@
{ stdenv, gcc, lib, bash, gdb }:
{
stdenv,
gcc,
lib,
bash,
gdb,
}:
stdenv.mkDerivation {
pname = "watch";
version = "1.0";
src = ./.;
doCheck = false;
nativeBuildInputs = [ gcc gdb ];
nativeBuildInputs = [gcc gdb];
buildPhase = ''
${bash}/bin/sh ./make.sh build
@@ -25,4 +30,4 @@ stdenv.mkDerivation {
description = "watch";
license = lib.licenses.mit;
};
}
}