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
33 lines
710 B
Nix
33 lines
710 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
|
|
buildGoModule {
|
|
pname = "solitaire-tui";
|
|
version = "0-unstable-2023-04-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "brianstrauch";
|
|
repo = "solitaire-tui";
|
|
rev = "45fffc4b13dbf1056f25a01c612dd835ddab5501";
|
|
hash = "sha256-xbqKtqFVvL+1x/SDoMEJ1LgnTy31LmZ/Je8K/bhP2bI=";
|
|
};
|
|
|
|
vendorHash = "sha256-jFbxT0ekimBNjIHGgMmCUrwZTS3Sdop/MFQMVdBF/38=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/brianstrauch/solitaire-tui";
|
|
description = "Klondike solitaire for the terminal";
|
|
mainProgram = "solitaire-tui";
|
|
maintainers = with maintainers; [ nyadiia ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|