base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / lc / lcrq / package.nix
blob25589d28d9552ee48d46f9407974403c3c193825
2   stdenv,
3   fetchFromGitea,
4   lib
5 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "lcrq";
8   version = "0.2.1";
10   src = fetchFromGitea {
11     domain = "codeberg.org";
12     owner = "librecast";
13     repo = "lcrq";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-xhv1rU0CImd5vs0bMdF1eJZt2AToU/JhBsoCsCLdyyg=";
16   };
18   installFlags = [ "PREFIX=$(out)" ];
20   meta = {
21     changelog = "https://codeberg.org/librecast/lcrq/src/tag/v${finalAttrs.version}/CHANGELOG.md";
22     description = "Librecast RaptorQ library";
23     homepage = "https://librecast.net/lcrq.html";
24     license = [ lib.licenses.gpl2 lib.licenses.gpl3 ];
25     maintainers = with lib.maintainers; [ albertchae aynish DMills27 jasonodoom jleightcap ];
26     platforms = lib.platforms.unix;
27   };