mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
11 lines
266 B
Nix
11 lines
266 B
Nix
{ callPackage, lib, ... }:
|
|
let
|
|
buildGraylog = callPackage ./graylog.nix { };
|
|
in
|
|
buildGraylog {
|
|
version = "6.0.14";
|
|
hash = "sha256-PH3xAO4bb5SvcqZoRoQeRaIBZdGfoRd3Kcnr603hYaI=";
|
|
maintainers = with lib.maintainers; [ bbenno ];
|
|
license = lib.licenses.sspl;
|
|
}
|