incus: fix container tests from image rename (#360305)
[NixPkgs.git] / pkgs / by-name / so / solitaire-tui / package.nix
blobfeba37c1d9298eb8d1b5b6eaac0e862f543aec41
1 { lib
2 , fetchFromGitHub
3 , buildGoModule
4 }:
6 buildGoModule {
7   pname = "solitaire-tui";
8   version = "0-unstable-2023-04-20";
10   src = fetchFromGitHub {
11     owner = "brianstrauch";
12     repo = "solitaire-tui";
13     rev = "45fffc4b13dbf1056f25a01c612dd835ddab5501";
14     hash = "sha256-xbqKtqFVvL+1x/SDoMEJ1LgnTy31LmZ/Je8K/bhP2bI=";
15   };
17   vendorHash = "sha256-jFbxT0ekimBNjIHGgMmCUrwZTS3Sdop/MFQMVdBF/38=";
19   ldflags = [ "-s" "-w" ];
21   meta = with lib; {
22     homepage = "https://github.com/brianstrauch/solitaire-tui";
23     description = "Klondike solitaire for the terminal";
24     mainProgram = "solitaire-tui";
25     maintainers = with maintainers; [ nyadiia ];
26     license = licenses.asl20;
27   };