format all code with alejandra

This commit is contained in:
Antoine Martin 2022-04-10 11:54:58 +02:00
parent fa0cda2673
commit 4f0d45e4d5
89 changed files with 1605 additions and 1298 deletions

View file

@ -1,20 +1,20 @@
{ stdenv
, fetchurl
, python3
}:
let
{
stdenv,
fetchurl,
python3,
}: let
version = "2.10.4";
in
stdenv.mkDerivation {
inherit version;
pname = "spot";
stdenv.mkDerivation {
inherit version;
pname = "spot";
buildInputs = [
python3
];
buildInputs = [
python3
];
src = fetchurl {
url = "https://www.lrde.epita.fr/dload/spot/spot-${version}.tar.gz";
sha256 = "sha256-6GKc22zOgwd4JpYM0B7OUhPar5ooPW9iqvaa+gYjR4o=";
};
}
src = fetchurl {
url = "https://www.lrde.epita.fr/dload/spot/spot-${version}.tar.gz";
sha256 = "sha256-6GKc22zOgwd4JpYM0B7OUhPar5ooPW9iqvaa+gYjR4o=";
};
}