mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
35 lines
803 B
Nix
35 lines
803 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, buildNpmPackage
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildNpmPackage rec {
|
||
|
pname = "spx-gc";
|
||
|
version = "1.1.2";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "TuomoKu";
|
||
|
repo = "SPX-GC";
|
||
|
rev = "v.${version}";
|
||
|
hash = "sha256-NVppqlQOpOmBtsoDVhaIiHzc360ek273rpr2i9p8WK8=";
|
||
|
};
|
||
|
|
||
|
dontNpmBuild = true;
|
||
|
|
||
|
npmDepsHash = "sha256-TGiurf/vwGV1KBxQXl0gVDNeZZWrW1Yku3fhTmh3nhk=";
|
||
|
|
||
|
postInstall = ''
|
||
|
mkdir -p $out/locales
|
||
|
cp -r $src/locales/* $out/locales
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "SPX is a graphics control client for live video productions and live streams using CasparCG, OBS, vMix, or similar software";
|
||
|
homepage = "https://github.com/TuomoKu/SPX-GC#npminstall";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ ];
|
||
|
mainProgram = "spx";
|
||
|
};
|
||
|
}
|