Skip to content

Commit

Permalink
_1fps: init at 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
renesat committed Sep 8, 2024
1 parent 6845754 commit cce070e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/_1/_1fps/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
lib,
fetchFromGitHub,
buildGoModule,
xorg,
}:
buildGoModule rec {
pname = "1fps";
version = "0.1.10";

src = fetchFromGitHub {
owner = "1fpsvideo";
repo = "1fps";
rev = "v${version}";
hash = "sha256-3uPGFxEWmKQxQWPmotZI29GykUGQDjtDjFPps4QMs0M=";
};

proxyVendor = true;

vendorHash = "sha256-J3RGQhjpGURmXOwq19BbbNg5ERrUXHnSG5Id6gX7Nug=";

buildInputs = [
xorg.libX11
xorg.libXtst
xorg.libXi
];

meta = {
description = "Encrypted Screen Sharing";
homepage = "https://1fps.video";
license = lib.licenses.fsl11Asl20;
maintainers = with lib.maintainers; [ renesat ];
mainProgram = "1fps";
};
}

0 comments on commit cce070e

Please sign in to comment.