summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/cl/clematis/package.nix
blob: e0f63572cdace8852456c387ddb66694f356e9a6 (plain)
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
{
  buildGoModule,
  fetchFromGitHub,
  lib,
}:

buildGoModule {
  pname = "clematis";
  version = "2022-04-16";

  src = fetchFromGitHub {
    owner = "sammy-ette";
    repo = "clematis";
    rev = "cbe74da084b9d3f6893f53721c27cd0f3a45fe93";
    sha256 = "sha256-TjoXHbY0vUQ2rhwdCJ/s/taRd9/MG0P9HaEw2BOIy/s=";
  };

  vendorHash = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA=";

  meta = {
    description = "Discord rich presence for MPRIS music players";
    homepage = "https://github.com/sammy-ette/clematis";
    license = lib.licenses.mit;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ misterio77 ];
    mainProgram = "clematis";
  };
}