forked from Nathan13888/CodeRunnerBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
34 lines (29 loc) · 835 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
description = "CodeRunnerBot flake";
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(
system:
let
pkgs = import nixpkgs {
inherit system;
};
in
rec {
packages.code-runner-bot = pkgs.buildGoModule rec {
pname = "CodeRunnerBot";
version = "0.1.0-dev";
src = ./.;
vendorSha256 = "sha256-SJK1c3Lf4hWoWTVLTTzMx1nudz7SZYT4uUluDuZ7K3E=";
};
defaultPackage = packages.code-runner-bot;
devShell = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
go
];
};
}
);
}