diff --git a/pkgs/by-name/fl/flent/package.nix b/pkgs/by-name/fl/flent/package.nix index f2d796b21384..a94971aa91d0 100644 --- a/pkgs/by-name/fl/flent/package.nix +++ b/pkgs/by-name/fl/flent/package.nix @@ -15,8 +15,8 @@ buildPythonApplication rec { hash = "sha256-21gd6sPYCZll3Q2O7kucTRhXvc5byXeQr50+1bZVT3M="; }; - buildInputs = [python.pkgs.sphinx]; - nativeBuildInputs = [qt5.wrapQtAppsHook]; + buildInputs = [ python.pkgs.sphinx ]; + nativeBuildInputs = [ qt5.wrapQtAppsHook ]; propagatedBuildInputs = [ procps python.pkgs.matplotlib @@ -50,6 +50,6 @@ buildPythonApplication rec { homepage = "https://flent.org"; license = licenses.gpl3; - maintainers = [maintainers.mmlb]; + maintainers = [ maintainers.mmlb ]; }; } diff --git a/pkgs/by-name/ht/http-getter/package.nix b/pkgs/by-name/ht/http-getter/package.nix index 5ea07cfe4f9d..72fb7f5f52c1 100644 --- a/pkgs/by-name/ht/http-getter/package.nix +++ b/pkgs/by-name/ht/http-getter/package.nix @@ -1,4 +1,11 @@ -{ lib, stdenv, fetchFromGitHub, cmake, curl, pkg-config }: +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + curl, + pkg-config, +}: stdenv.mkDerivation { pname = "http-getter"; @@ -11,7 +18,10 @@ stdenv.mkDerivation { sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl"; }; - nativeBuildInputs = [ cmake pkg-config ]; + nativeBuildInputs = [ + cmake + pkg-config + ]; buildInputs = [ curl ]; meta = with lib; {