nixpkgs/pkgs/applications/video/go-chromecast/default.nix

25 lines
699 B
Nix
Raw Normal View History

2020-11-08 04:20:00 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "go-chromecast";
2021-08-09 19:23:25 +00:00
version = "0.2.10";
2020-11-08 04:20:00 +00:00
src = fetchFromGitHub {
owner = "vishen";
repo = pname;
rev = "v${version}";
2021-08-09 19:23:25 +00:00
sha256 = "sha256-8216YaDgjy9Fp94Y5SQwEQpAP4NwvEhsJHe6xpQLAk8=";
2020-11-08 04:20:00 +00:00
};
2021-01-18 22:27:20 +00:00
vendorSha256 = "sha256-idxElk4Sy7SE9G1OMRw8YH4o8orBa80qhBXPA+ar620=";
2020-11-08 04:20:00 +00:00
2021-08-26 06:45:51 +00:00
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" "-X main.date=unknown" ];
2020-11-08 04:20:00 +00:00
meta = with lib; {
homepage = "https://github.com/vishen/go-chromecast";
description = "CLI for Google Chromecast, Home devices and Cast Groups";
license = licenses.asl20;
maintainers = with maintainers; [ marsam ];
};
}