hqtoxbot/flake.nix

20 lines
443 B
Nix
Raw Normal View History

2019-12-17 04:53:51 +01:00
{
description = "C3D2 Tox bot";
edition = 201909;
inputs.nimble.uri = "git+https://git.sr.ht/~ehmry/nimble_flake";
outputs = { self, nimble }: {
packages.x86_64-linux.hqtoxbot =
nimble.defaultPackage.x86_64-linux.buildNimble {
name = "hqtoxbot";
src = self;
homepage = "https://gitea.c3d2.de/ehmry/hqtoxbot";
};
defaultPackage.x86_64-linux = self.packages.x86_64-linux.hqtoxbot;
};
}