14 lines
282 B
Nix
14 lines
282 B
Nix
with import <nixpkgs> {};
|
|
let lua = lua5_3.withPackages (ps: [
|
|
ps.dkjson
|
|
ps.lpeg
|
|
ps.http
|
|
ps.luaposix
|
|
]);
|
|
in stdenv.mkDerivation {
|
|
pname = "grafana-sms-alert";
|
|
version = "0.1";
|
|
src = ./.;
|
|
buildInputs = [lua (fennel.override { inherit lua; }) ];
|
|
}
|