aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: ce4074f0de6ba48c5e6087313748e27df38b6115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-FileCopyrightText: 2020 Ethel Morgan
#
# SPDX-License-Identifier: MIT

{ pkgs ? import <nixpkgs> {} }:
with pkgs;

buildGoModule rec {
  name = "dispatch-${version}";
  version = "latest";
  goPackagePath = "go.eth.moe/dispatch";

  modSha256 = "1v91pdg4n04vdwqgkl90kll8l5g33fgy99kin3wddw9pvih3vqw8";

  src = ./.;

  meta = {
    homepage = "https://git.eth.moe/dispatch";
    licence = stdenv.lib.licenses.mit;
  };
}