nixpkgs/pkgs/by-name/xm/xmonad-log/package.nix
nicoo 2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00

26 lines
692 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";
};
}