about summary refs log tree commit diff
path: root/pkgs/by-name/xm/xmonad-log/package.nix
blob: 385d5edf90cfd652dfc94abce7cbdcffc0d051a5 (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
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule {
  pname = "xmonad-log";
  version = "0.1.0-unstable-2024-06-14";

  src = fetchFromGitHub {
    owner = "xintron";
    repo = "xmonad-log";
    rev = "70c76d59c22cf5f412467cd42fa9ff34eeb2bd1b";
    sha256 = "sha256-hDYb3mSX2+FX/2uazCKPXmNj0avDlutwSMjST7wLBVY=";
  };

  vendorHash = "sha256-58zK6t3rb+19ilaQaNgsMVFQBYKPIV40ww8klrGbpnw=";
  proxyVendor = true;

  meta = with lib; {
    description = "xmonad DBus monitoring solution";
    homepage = "https://github.com/xintron/xmonad-log";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ joko ];
    mainProgram = "xmonad-log";
  };
}