about summary refs log tree commit diff
path: root/pkgs/tools/misc/logstash
diff options
context:
space:
mode:
authorhappysalada <raphael@megzari.com>2021-08-30 12:25:15 +0900
committerRaphael Megzari <raphael@megzari.com>2021-08-31 09:06:13 +0900
commit9a3c58ee74ad3d89cd848f10d787c753a92f70bd (patch)
treed5e18717c27d7a29fbaeaabdae2b3561b3f49809 /pkgs/tools/misc/logstash
parent4a2d9eb0fe02bb308279f50f05d31de66a8ba857 (diff)
logstash: nixpkgs-fmt
Diffstat (limited to 'pkgs/tools/misc/logstash')
-rw-r--r--pkgs/tools/misc/logstash/7.x.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/tools/misc/logstash/7.x.nix b/pkgs/tools/misc/logstash/7.x.nix
index 1abc0ff9bf82b..340cbd830646c 100644
--- a/pkgs/tools/misc/logstash/7.x.nix
+++ b/pkgs/tools/misc/logstash/7.x.nix
@@ -1,6 +1,7 @@
 { elk7Version
 , enableUnfree ? true
-, lib, stdenv
+, lib
+, stdenv
 , fetchurl
 , makeWrapper
 , nixosTests
@@ -21,13 +22,14 @@ let this = stdenv.mkDerivation rec {
       else "0nlwgaw6rmhp5b68zpp1pzsjs30b0bjzdg8f7xy6rarpk338s8yb";
   };
 
-  dontBuild         = true;
-  dontPatchELF      = true;
-  dontStrip         = true;
+  dontBuild = true;
+  dontPatchELF = true;
+  dontStrip = true;
   dontPatchShebangs = true;
 
   buildInputs = [
-    makeWrapper jre
+    makeWrapper
+    jre
   ];
 
   installPhase = ''
@@ -48,9 +50,9 @@ let this = stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems";
-    homepage    = "https://www.elastic.co/products/logstash";
-    license     = if enableUnfree then licenses.elastic else licenses.asl20;
-    platforms   = platforms.unix;
+    homepage = "https://www.elastic.co/products/logstash";
+    license = if enableUnfree then licenses.elastic else licenses.asl20;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ wjlroe offline basvandijk ];
   };
   passthru.tests =