mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
512e8afdb9
format (will squash)
41 lines
869 B
Nix
41 lines
869 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "obs-cli";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "muesli";
|
|
repo = "obs-cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4tjS+PWyP/T0zs4IGE6VQ5c+3tuqxlBwfpPBVEcim6c=";
|
|
};
|
|
|
|
vendorHash = "sha256-tjQOHvmhHyVMqIJQvFaisEqci1wkB4ke/a+GSgwXzCo=";
|
|
|
|
proxyVendor = true;
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "OBS-cli is a command-line remote control for OBS";
|
|
homepage = "https://github.com/muesli/obs-cli";
|
|
changelog = "https://github.com/muesli/obs-cli/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ flexiondotorg ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
mainProgram = "obs-cli";
|
|
};
|
|
}
|