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 6ac8238
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions pkgs/by-name/1f/1fps/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
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 ];
};
}

0 comments on commit 6ac8238

Please sign in to comment.