nixos-config/pkgs/willow/default.nix

26 lines
674 B
Nix
Raw Normal View History

2025-01-15 06:00:12 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2024-05-18 00:50:31 +00:00
buildGoModule {
pname = "willow";
version = "unstable-2024-08-15";
2024-05-18 00:50:31 +00:00
src = fetchFromGitHub {
owner = "Amolith";
repo = "willow";
rev = "af7202f230e42808b705bb9d4ddd04cfa28b401b";
hash = "sha256-ewXYkx2P2LO6Stg4P4WuVeDLgy2Zh/NYGkMl43DJ+Es=";
2024-05-18 00:50:31 +00:00
};
vendorHash = "sha256-KLDoAd/YbQGW1v8bxffJS1PC8fJyEwWT5vT7g0a7rsg=";
2024-05-18 00:50:31 +00:00
meta = with lib; {
homepage = "https://github.com/Amolith/willow";
description = "Forge-agnostic release tracker";
2025-01-15 06:00:12 +00:00
license = with licenses; [ mit asl20 ];
2024-05-18 00:50:31 +00:00
maintainers = with maintainers; [ foo-dogsquared ];
mainProgram = "willow";
platforms = platforms.unix;
};
}