electron_32: fix log spam when building on aarch64-linux (#378988)
[NixPkgs.git] / pkgs / by-name / lc / lcrq / package.nix
blob42bdde48166c63c1b1bcee1ccf856a9d72787b19
2   stdenv,
3   fetchFromGitea,
4   lib,
5 }:
6 stdenv.mkDerivation (finalAttrs: {
7   pname = "lcrq";
8   version = "0.2.3";
10   src = fetchFromGitea {
11     domain = "codeberg.org";
12     owner = "librecast";
13     repo = "lcrq";
14     rev = "v${finalAttrs.version}";
15     hash = "sha256-MH72Lcfo8ri0j/WCtIW90KSw0kVM2uLNFJ599yPq1o4=";
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 = [
25       lib.licenses.gpl2
26       lib.licenses.gpl3
27     ];
28     maintainers = with lib.maintainers; [
29       albertchae
30       aynish
31       DMills27
32       jasonodoom
33       jleightcap
34     ];
35     platforms = lib.platforms.unix;
36   };