Also follow the _recommendation for new packages with multiple versions_ in pkgs/by-name/README.md
11 lines
265 B
Nix
11 lines
265 B
Nix
{ callPackage, lib, ... }:
|
|
let
|
|
buildGraylog = callPackage ./graylog.nix { };
|
|
in
|
|
buildGraylog {
|
|
version = "6.1.8";
|
|
hash = "sha256-omyV4BSY9SWDFyLcQCr0+LcjRecw9C1HtvsnCJrZX1U=";
|
|
maintainers = with lib.maintainers; [ bbenno ];
|
|
license = lib.licenses.sspl;
|
|
}
|