Skip to content

Commit

Permalink
willow: init package
Browse files Browse the repository at this point in the history
  • Loading branch information
foo-dogsquared committed May 18, 2024
1 parent e5226d8 commit 4e3778b
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ lib.makeScope newScope (self: {
uwsm = callPackage ./uwsm { };
vgc = qt6Packages.callPackage ./vgc { };
watc = callPackage ./watc { };
willow = callPackage ./willow { };
wzmach = callPackage ./wzmach { };
xs = callPackage ./xs { };
})
31 changes: 31 additions & 0 deletions pkgs/willow/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule {
pname = "willow";
version = "unstable-2024-05-17";

src = fetchFromGitHub {
owner = "Amolith";
repo = "willow";
rev = "5219377958faf103e16f16c29b2eb82f33a4f1c4";
hash = "sha256-MGz+X8Az2Cqzp5SB7L/RU18m15WOIS8vnAjCJwcTQ/s=";
};

vendorHash = "sha256-DCqD9GTszw7KJ+BlEX4T1Mra/D7uAFcWsMXg73V8a7k=";

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;
};

}

0 comments on commit 4e3778b

Please sign in to comment.