about summary refs log tree commit diff
path: root/pkgs/tools/networking/httpstat
diff options
context:
space:
mode:
authorTim Steinbach <tim@nequissimus.com>2020-10-08 10:22:38 -0400
committerTim Steinbach <tim@nequissimus.com>2020-10-08 11:00:17 -0400
commita5209ce244d8efa9583c84cf66960495edaff7b3 (patch)
tree9ca31ad6c2827ac9eea8b58b0d25ee32496acf81 /pkgs/tools/networking/httpstat
parente0aa9513d439bd4216a28e2f9cfd137c550e5536 (diff)
httpstat: Format with nixfmt
Diffstat (limited to 'pkgs/tools/networking/httpstat')
-rw-r--r--pkgs/tools/networking/httpstat/default.nix38
1 files changed, 19 insertions, 19 deletions
diff --git a/pkgs/tools/networking/httpstat/default.nix b/pkgs/tools/networking/httpstat/default.nix
index 70bbabc35bb75..29bd4c331eb8f 100644
--- a/pkgs/tools/networking/httpstat/default.nix
+++ b/pkgs/tools/networking/httpstat/default.nix
@@ -1,24 +1,24 @@
 { stdenv, fetchFromGitHub, curl, pythonPackages, glibcLocales }:
 
 pythonPackages.buildPythonApplication rec {
-    pname = "httpstat";
-    version = "1.2.1";
-    src = fetchFromGitHub {
-      owner = "reorx";
-      repo = pname;
-      rev = version;
-      sha256 = "1vriibcsq4j1hvm5yigbbmmv21dc40y5c9gvd31dg9qkaz26hml6";
-    };
-    doCheck = false; # No tests
-    buildInputs = [ glibcLocales ];
-    runtimeDeps = [ curl ];
+  pname = "httpstat";
+  version = "1.2.1";
+  src = fetchFromGitHub {
+    owner = "reorx";
+    repo = pname;
+    rev = version;
+    sha256 = "1vriibcsq4j1hvm5yigbbmmv21dc40y5c9gvd31dg9qkaz26hml6";
+  };
+  doCheck = false; # No tests
+  buildInputs = [ glibcLocales ];
+  runtimeDeps = [ curl ];
 
-    LC_ALL = "en_US.UTF-8";
+  LC_ALL = "en_US.UTF-8";
 
-    meta = {
-      description = "curl statistics made simple";
-      homepage = "https://github.com/reorx/httpstat";
-      license = stdenv.lib.licenses.mit;
-      maintainers = with stdenv.lib.maintainers; [ nequissimus ];
-    };
-  }
+  meta = {
+    description = "curl statistics made simple";
+    homepage = "https://github.com/reorx/httpstat";
+    license = stdenv.lib.licenses.mit;
+    maintainers = with stdenv.lib.maintainers; [ nequissimus ];
+  };
+}