mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
29 lines
758 B
Nix
29 lines
758 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;
|
|
};
|
|
})
|