Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

flent,http-getter: nixfmt

wxt 8a432a45 1984e1ca

+15 -5
+3 -3
pkgs/by-name/fl/flent/package.nix
··· 15 15 hash = "sha256-21gd6sPYCZll3Q2O7kucTRhXvc5byXeQr50+1bZVT3M="; 16 16 }; 17 17 18 - buildInputs = [python.pkgs.sphinx]; 19 - nativeBuildInputs = [qt5.wrapQtAppsHook]; 18 + buildInputs = [ python.pkgs.sphinx ]; 19 + nativeBuildInputs = [ qt5.wrapQtAppsHook ]; 20 20 propagatedBuildInputs = [ 21 21 procps 22 22 python.pkgs.matplotlib ··· 50 50 homepage = "https://flent.org"; 51 51 license = licenses.gpl3; 52 52 53 - maintainers = [maintainers.mmlb]; 53 + maintainers = [ maintainers.mmlb ]; 54 54 }; 55 55 }
+12 -2
pkgs/by-name/ht/http-getter/package.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, curl, pkg-config }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + curl, 7 + pkg-config, 8 + }: 2 9 3 10 stdenv.mkDerivation { 4 11 pname = "http-getter"; ··· 11 18 sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl"; 12 19 }; 13 20 14 - nativeBuildInputs = [ cmake pkg-config ]; 21 + nativeBuildInputs = [ 22 + cmake 23 + pkg-config 24 + ]; 15 25 buildInputs = [ curl ]; 16 26 17 27 meta = with lib; {