blob: 840aab3ef294b4c5aaf37530b43488b27bed3205 (
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 = "catbus-wakeonlan-${version}";
version = "latest";
goPackagePath = "go.eth.moe/catbus-wakeonlan";
modSha256 = "0kll39ran2bl7w0l6a7866ka733cxyigx7gr3q4lfx2gxr6jqz8y";
src = ./.;
meta = {
homepage = "https://ethulhu.co.uk/catbus";
licence = stdenv.lib.licenses.mit;
};
}
|