depot/third_party/nixpkgs/pkgs/tools/misc/clematis/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

26 lines
657 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "clematis";
version = "2022-04-16";
src = fetchFromGitHub {
owner = "TorchedSammy";
repo = "clematis";
rev = "cbe74da084b9d3f6893f53721c27cd0f3a45fe93";
sha256 = "sha256-TjoXHbY0vUQ2rhwdCJ/s/taRd9/MG0P9HaEw2BOIy/s=";
};
vendorHash = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA=";
meta = with lib; {
description = "Discord rich presence for MPRIS music players.";
homepage = "https://github.com/TorchedSammy/Clematis";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ misterio77 ];
};
}