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