Eru-like bot for IRC (with TLS support), written in Zig.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{ |
|
description = "ziglings"; |
|
|
|
inputs = { |
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; |
|
}; |
|
|
|
outputs = { self, nixpkgs }: |
|
let |
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; |
|
in { |
|
devShells.x86_64-linux.default = pkgs.mkShell { |
|
buildInputs = [ |
|
pkgs.zig |
|
]; |
|
}; |
|
}; |
|
}
|
|
|