nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 28 lines 689 B view raw
1{ 2 buildGoModule, 3 fetchFromGitHub, 4 lib, 5}: 6 7buildGoModule { 8 pname = "clematis"; 9 version = "2022-04-16"; 10 11 src = fetchFromGitHub { 12 owner = "TorchedSammy"; 13 repo = "clematis"; 14 rev = "cbe74da084b9d3f6893f53721c27cd0f3a45fe93"; 15 sha256 = "sha256-TjoXHbY0vUQ2rhwdCJ/s/taRd9/MG0P9HaEw2BOIy/s="; 16 }; 17 18 vendorHash = "sha256-YKu+7LFUoQwCH//URIswiaqa0rmnWZJvuSn/68G3TUA="; 19 20 meta = { 21 description = "Discord rich presence for MPRIS music players"; 22 homepage = "https://github.com/TorchedSammy/Clematis"; 23 license = lib.licenses.mit; 24 platforms = lib.platforms.linux; 25 maintainers = with lib.maintainers; [ misterio77 ]; 26 mainProgram = "clematis"; 27 }; 28}