pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / by-name / rn / rnd-name / package.nix
blob6a60add9b9b37a91bec3f0ff1ac3ac71c907fe1a
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , nix-update-script
5 }:
6 let
7   version = "1.0.0";
8 in
9 buildGoModule {
10   inherit version;
11   pname = "rnd-name";
13   src = fetchFromGitHub {
14     owner = "mrhenry";
15     repo = "rnd-name";
16     rev = "v${version}";
17     hash = "sha256-o3A7VDH6rpJmCBu8ZPfPllMm1rAN1tNrz2eUyd2Tjjs=";
18   };
20   vendorHash = null;
22   passthru.updateScript = nix-update-script { };
24   meta = {
25     platforms = lib.platforms.all;
26     mainProgram = "rnd-name";
27     description = "Random strings that are easy to recognize";
28     homepage = "https://github.com/mrhenry/rnd-name";
29     changelog = "https://github.com/mrhenry/rnd-name/releases/tag/v${version}";
30     license = lib.licenses.mit0;
31     maintainers = with lib.maintainers; [ fd ];
32   };