Merge pull request #248437 from ngi-nix/moss/lcsync
{lcrq,librecast,lcsync}: init at {0.1.0, 0.7-RC3, 0.2.1}
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
{
|
||||
fetchFromGitea,
|
||||
lcrq,
|
||||
lib,
|
||||
librecast,
|
||||
libsodium,
|
||||
stdenv
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "lcsync";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "librecast";
|
||||
repo = "lcsync";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-RVfa0EmCPPT7ndy94YwD24S9pj7L11ztISaKHGcbTS8=";
|
||||
};
|
||||
buildInputs = [ lcrq librecast libsodium ];
|
||||
configureFlags = [ "SETCAP_PROGRAM=true" ];
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
changelog = "https://codeberg.org/librecast/lcsync/src/tag/v${finalAttrs.version}/CHANGELOG.md";
|
||||
description = "Librecast File and Syncing Tool";
|
||||
homepage = "https://librecast.net/lcsync.html";
|
||||
license = [ lib.licenses.gpl2 lib.licenses.gpl3 ];
|
||||
maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ];
|
||||
platforms = lib.platforms.gnu;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,28 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitea,
|
||||
lib
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "lcrq";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "librecast";
|
||||
repo = "lcrq";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-s8+uTF6GQ76wG1zoAxqCaVT1J5Rd7vxPKX4zbQx6ro4=";
|
||||
};
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
changelog = "https://codeberg.org/librecast/lcrq/src/tag/v${finalAttrs.version}/CHANGELOG.md";
|
||||
description = "Librecast RaptorQ library.";
|
||||
homepage = "https://librecast.net/lcrq.html";
|
||||
license = [ lib.licenses.gpl2 lib.licenses.gpl3 ];
|
||||
maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ];
|
||||
platforms = lib.platforms.gnu;
|
||||
};
|
||||
})
|
||||
@@ -0,0 +1,30 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitea,
|
||||
lcrq,
|
||||
lib,
|
||||
libsodium,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "librecast";
|
||||
version = "0.7-RC3";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "librecast";
|
||||
repo = "librecast";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-AD3MpWg8Lp+VkizwYTuuS2YWM8e0xaMEavVIvwhSZRo=";
|
||||
};
|
||||
buildInputs = [ lcrq libsodium ];
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = {
|
||||
changelog = "https://codeberg.org/librecast/librecast/src/tag/v${finalAttrs.version}/CHANGELOG.md";
|
||||
description = "IPv6 multicast library";
|
||||
homepage = "https://librecast.net/librecast.html";
|
||||
license = [ lib.licenses.gpl2 lib.licenses.gpl3 ];
|
||||
maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ];
|
||||
platforms = lib.platforms.gnu;
|
||||
};
|
||||
})
|
||||
@@ -10148,6 +10148,8 @@ with pkgs;
|
||||
|
||||
lcdf-typetools = callPackage ../tools/misc/lcdf-typetools { };
|
||||
|
||||
lcsync = callPackage ../applications/networking/sync/lcsync { };
|
||||
|
||||
ldapdomaindump = with python3Packages; toPythonApplication ldapdomaindump;
|
||||
|
||||
ldapmonitor = callPackage ../tools/security/ldapmonitor { };
|
||||
@@ -22212,6 +22214,8 @@ with pkgs;
|
||||
|
||||
lcms2 = callPackage ../development/libraries/lcms2 { };
|
||||
|
||||
lcrq = callPackage ../development/libraries/lcrq { };
|
||||
|
||||
ldacbt = callPackage ../development/libraries/ldacbt { };
|
||||
|
||||
ldb = callPackage ../development/libraries/ldb { };
|
||||
@@ -22931,6 +22935,8 @@ with pkgs;
|
||||
|
||||
libre = callPackage ../development/libraries/libre { };
|
||||
|
||||
librecast = callPackage ../development/libraries/librecast { };
|
||||
|
||||
libredwg = callPackage ../development/libraries/libredwg { };
|
||||
|
||||
librem = callPackage ../development/libraries/librem { };
|
||||
|
||||
Reference in New Issue
Block a user