3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #200621 from Misterio77/init-clematis

clematis: init at 2022-04-16
This commit is contained in:
Anderson Torres 2022-11-29 08:14:24 -03:00 committed by GitHub
commit 4e73660f1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ 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=";
};
vendorSha256 = "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 ];
};
}

View file

@ -1317,6 +1317,8 @@ with pkgs;
cidrgrep = callPackage ../tools/text/cidrgrep { };
clematis = callPackage ../tools/misc/clematis { };
cope = callPackage ../tools/misc/cope { };
ejson2env = callPackage ../tools/admin/ejson2env { };