mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2025-06-16 17:14:37 +02:00
ajusted some options
This commit is contained in:
parent
45dd334231
commit
dea45b282e
6 changed files with 48 additions and 7 deletions
pkgs
34
pkgs/spx-gc.nix
Normal file
34
pkgs/spx-gc.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue