mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
24 lines
620 B
Nix
24 lines
620 B
Nix
{ lib, buildGoModule, fetchFromGitHub, }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ytcast";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MarcoLucidi01";
|
|
repo = "ytcast";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-iy9+MgXwP4ALz4NHJyn2ghC5boR53H3ioB2+7tcJunE=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
ldflags = [ "-X main.progVersion=${version}" ];
|
|
|
|
meta = with lib; {
|
|
description = "A tool to cast YouTube videos from the command-line";
|
|
homepage = "https://github.com/MarcoLucidi01/ytcast";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ waelwindows ];
|
|
mainProgram = "ytcast";
|
|
};
|
|
}
|