chore: format with alejandra

This commit is contained in:
steveej 2023-02-07 18:24:28 +01:00
parent 05f0cbdfb4
commit 89f5f65f2d
181 changed files with 2720 additions and 2560 deletions

View file

@ -1,5 +1,12 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, gnumake, gcc }:
{
stdenv,
fetchFromGitHub,
autoconf,
automake,
libtool,
gnumake,
gcc,
}:
stdenv.mkDerivation rec {
name = "slirp4netns-${version}";
version = "v0.2.1";
@ -11,7 +18,7 @@ stdenv.mkDerivation rec {
sha256 = "0kqncza4kgqkqiki569j7ym9pvp7879i6q2z0djvda9y0i6b80w4";
};
buildInputs = [ autoconf automake libtool gnumake gcc ];
buildInputs = [autoconf automake libtool gnumake gcc];
configurePhase = ''
./autogen.sh
@ -30,7 +37,7 @@ stdenv.mkDerivation rec {
description = "User-mode networking for unprivileged network namespaces";
homepage = "https://github.com/rootless-containers/slirp4netns";
license = null;
maintainers = [ maintainers.steveej ];
maintainers = [maintainers.steveej];
platforms = platforms.all;
};
}