zoxide: 0.9.6 -> 0.9.7 (#380745)
[NixPkgs.git] / pkgs / by-name / yt / ytcast / package.nix
blob9a1caccc1f2271bf9384a07b9ee12472534115e0
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "ytcast";
9   version = "1.4.0";
11   src = fetchFromGitHub {
12     owner = "MarcoLucidi01";
13     repo = "ytcast";
14     rev = "v${version}";
15     sha256 = "sha256-iy9+MgXwP4ALz4NHJyn2ghC5boR53H3ioB2+7tcJunE=";
16   };
18   vendorHash = null;
19   ldflags = [ "-X main.progVersion=${version}" ];
21   meta = with lib; {
22     description = "Tool to cast YouTube videos from the command-line";
23     homepage = "https://github.com/MarcoLucidi01/ytcast";
24     license = licenses.mit;
25     maintainers = with maintainers; [ waelwindows ];
26     mainProgram = "ytcast";
27   };