logstash: nixpkgs-fmt
This commit is contained in:
parent
4a2d9eb0fe
commit
9a3c58ee74
1 changed files with 10 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ elk7Version
|
{ elk7Version
|
||||||
, enableUnfree ? true
|
, enableUnfree ? true
|
||||||
, lib, stdenv
|
, lib
|
||||||
|
, stdenv
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, nixosTests
|
, nixosTests
|
||||||
|
@ -21,13 +22,14 @@ let this = stdenv.mkDerivation rec {
|
||||||
else "0nlwgaw6rmhp5b68zpp1pzsjs30b0bjzdg8f7xy6rarpk338s8yb";
|
else "0nlwgaw6rmhp5b68zpp1pzsjs30b0bjzdg8f7xy6rarpk338s8yb";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontBuild = true;
|
dontBuild = true;
|
||||||
dontPatchELF = true;
|
dontPatchELF = true;
|
||||||
dontStrip = true;
|
dontStrip = true;
|
||||||
dontPatchShebangs = true;
|
dontPatchShebangs = true;
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
makeWrapper jre
|
makeWrapper
|
||||||
|
jre
|
||||||
];
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -48,9 +50,9 @@ let this = stdenv.mkDerivation rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Logstash is a data pipeline that helps you process logs and other event data from a variety of systems";
|
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";
|
homepage = "https://www.elastic.co/products/logstash";
|
||||||
license = if enableUnfree then licenses.elastic else licenses.asl20;
|
license = if enableUnfree then licenses.elastic else licenses.asl20;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ wjlroe offline basvandijk ];
|
maintainers = with maintainers; [ wjlroe offline basvandijk ];
|
||||||
};
|
};
|
||||||
passthru.tests =
|
passthru.tests =
|
||||||
|
|
Loading…
Reference in a new issue