summary refs log tree commit diff
path: root/pkgs/applications/misc/madonctl/default.nix
blob: a61c66d93746144bf6856b2a180623c1d5b97f5b (plain) (blame)
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
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "madonctl";
  version = "1.1.0";

  goPackagePath = "github.com/McKael/madonctl";

  src = fetchFromGitHub {
    owner = "McKael";
    repo = "madonctl";
    rev  = "v${version}";
    sha256 = "1dnc1xaafhwhhf5afhb0wc2wbqq0s1r7qzj5k0xzc58my541gadc";
  };

  # How to update:
  # go get -u github.com/McKael/madonctl
  # cd $GOPATH/src/github.com/McKael/madonctl
  # git checkout v<version-number>
  # go2nix save

  goDeps = ./deps.nix;

  meta = with stdenv.lib; {
    description = "CLI for the Mastodon social network API";
    homepage = "https://github.com/McKael/madonctl";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ ];
  };
}