mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-19 17:39:34 +00:00
12 lines
245 B
Nix
12 lines
245 B
Nix
|
{ fetchurl }:
|
||
|
|
||
|
let version = "1.1.0"; in
|
||
|
|
||
|
fetchurl {
|
||
|
url = "http://semicomplete.com/files/logstash/logstash-${version}-monolithic.jar";
|
||
|
|
||
|
name = "logstash-${version}.jar";
|
||
|
|
||
|
sha256 = "03s9g2appsmdg973212dl37ldws36fgsvxi9w1lxbvmmclc4k7vc";
|
||
|
}
|