Files
nixpkgs/pkgs/by-name/xm/xmonad-log/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

30 lines
699 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule {
pname = "xmonad-log";
version = "0.1.0-unstable-2024-06-14";
src = fetchFromGitHub {
owner = "xintron";
repo = "xmonad-log";
rev = "70c76d59c22cf5f412467cd42fa9ff34eeb2bd1b";
hash = "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";
};
}