72a282bbd9
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>
28 lines
759 B
Nix
28 lines
759 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitea,
|
|
lib
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
name = "lcrq";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "librecast";
|
|
repo = "lcrq";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-r4UiZ9oNDxF3rHMqg+1NLLjm6LPZtzgtZOs7pRe5SdQ=";
|
|
};
|
|
|
|
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.unix;
|
|
};
|
|
})
|