lcsync: init at 0.2.1

Co-authored-by: Jason Odoom <jasonodoom@gmail.com>
Co-authored-by: Anish Lakhwara <anish+git@lakhwara.com>
Co-authored-by: Dominic Mills <dominic.millz27@gmail.com>
Co-authored-by: Albert Chae <albertchae@users.noreply.github.com>
Co-authored-by: Jack Leightcap <jack@leightcap.com>
Signed-off-by: Jack Leightcap <jack@leightcap.com>

+35
+33
pkgs/applications/networking/sync/lcsync/default.nix
··· 1 + { 2 + fetchFromGitea, 3 + lcrq, 4 + lib, 5 + librecast, 6 + libsodium, 7 + stdenv 8 + }: 9 + stdenv.mkDerivation (finalAttrs: { 10 + name = "lcsync"; 11 + version = "0.2.1"; 12 + 13 + src = fetchFromGitea { 14 + domain = "codeberg.org"; 15 + owner = "librecast"; 16 + repo = "lcsync"; 17 + rev = "v${finalAttrs.version}"; 18 + hash = "sha256-RVfa0EmCPPT7ndy94YwD24S9pj7L11ztISaKHGcbTS8="; 19 + }; 20 + buildInputs = [ lcrq librecast libsodium ]; 21 + configureFlags = [ "SETCAP_PROGRAM=true" ]; 22 + installFlags = [ "PREFIX=$(out)" ]; 23 + doCheck = true; 24 + 25 + meta = { 26 + changelog = "https://codeberg.org/librecast/lcsync/src/tag/v${finalAttrs.version}/CHANGELOG.md"; 27 + description = "Librecast File and Syncing Tool"; 28 + homepage = "https://librecast.net/lcsync.html"; 29 + license = [ lib.licenses.gpl2 lib.licenses.gpl3 ]; 30 + maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ]; 31 + platforms = lib.platforms.gnu; 32 + }; 33 + })
+2
pkgs/top-level/all-packages.nix
··· 10144 10144 10145 10145 lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { }; 10146 10146 10147 + lcsync = callPackage ../applications/networking/sync/lcsync { }; 10148 + 10147 10149 ldapdomaindump = with python3Packages; toPythonApplication ldapdomaindump; 10148 10150 10149 10151 ldapmonitor = callPackage ../tools/security/ldapmonitor { };