2024-05-18 00:50:31 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule {
|
|
|
|
pname = "willow";
|
2024-08-24 04:55:40 +00:00
|
|
|
version = "unstable-2024-08-15";
|
2024-05-18 00:50:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Amolith";
|
|
|
|
repo = "willow";
|
2024-08-24 04:55:40 +00:00
|
|
|
rev = "af7202f230e42808b705bb9d4ddd04cfa28b401b";
|
|
|
|
hash = "sha256-ewXYkx2P2LO6Stg4P4WuVeDLgy2Zh/NYGkMl43DJ+Es=";
|
2024-05-18 00:50:31 +00:00
|
|
|
};
|
|
|
|
|
2024-08-24 04:55:40 +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";
|
|
|
|
license = with licenses; [
|
|
|
|
mit
|
|
|
|
asl20
|
|
|
|
];
|
|
|
|
maintainers = with maintainers; [ foo-dogsquared ];
|
|
|
|
mainProgram = "willow";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|