depot/third_party/nixpkgs/pkgs/development/libraries/lcrq/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

28 lines
759 B
Nix

{
stdenv,
fetchFromGitea,
lib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "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;
};
})