mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
_1fps: init at 0.1.10 (#333281)
This commit is contained in:
commit
59c3aa2d4d
@ -554,6 +554,13 @@ lib.mapAttrs mkLicense ({
|
||||
redistributable = true;
|
||||
};
|
||||
|
||||
fsl11Asl20 = {
|
||||
fullName = "Functional Source License, Version 1.1, Apache 2.0 Future License";
|
||||
url = "https://fsl.software/FSL-1.1-Apache-2.0.template.md";
|
||||
free = false;
|
||||
redistributable = true;
|
||||
};
|
||||
|
||||
ftl = {
|
||||
spdxId = "FTL";
|
||||
fullName = "Freetype Project License";
|
||||
|
35
pkgs/by-name/_1/_1fps/package.nix
Normal file
35
pkgs/by-name/_1/_1fps/package.nix
Normal file
@ -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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user