treewide: refactor meta section

+94 -94
+4 -4
pkgs/by-name/_0/_0verkill/package.nix
··· 37 env.NIX_CFLAGS_COMPILE = "-fcommon"; 38 hardeningDisable = [ "all" ]; # Someday the upstream will update the code... 39 40 - meta = with lib; { 41 homepage = "https://github.com/hackndev/0verkill"; 42 description = "ASCII-ART bloody 2D action deathmatch-like game"; 43 - license = with licenses; gpl2Only; 44 - maintainers = with maintainers; [ ]; 45 - platforms = with platforms; unix; 46 }; 47 }
··· 37 env.NIX_CFLAGS_COMPILE = "-fcommon"; 38 hardeningDisable = [ "all" ]; # Someday the upstream will update the code... 39 40 + meta = { 41 homepage = "https://github.com/hackndev/0verkill"; 42 description = "ASCII-ART bloody 2D action deathmatch-like game"; 43 + license = lib.licenses.gpl2Only; 44 + maintainers = with lib.maintainers; [ ]; 45 + platforms = lib.platforms.unix; 46 }; 47 }
+4 -4
pkgs/by-name/_0/_0xproto/package.nix
··· 23 runHook postInstall 24 ''; 25 26 - meta = with lib; { 27 description = "Free and Open-source font for programming"; 28 homepage = "https://github.com/0xType/0xProto"; 29 - license = licenses.ofl; 30 - maintainers = [ maintainers.edswordsmith ]; 31 - platforms = platforms.all; 32 }; 33 }
··· 23 runHook postInstall 24 ''; 25 26 + meta = { 27 description = "Free and Open-source font for programming"; 28 homepage = "https://github.com/0xType/0xProto"; 29 + license = lib.licenses.ofl; 30 + maintainers = with lib.maintainers; [ edswordsmith ]; 31 + platforms = lib.platforms.all; 32 }; 33 }
+4 -4
pkgs/by-name/_1/_1password-cli/package.nix
··· 86 updateScript = ./update.sh; 87 }; 88 89 - meta = with lib; { 90 description = "1Password command-line tool"; 91 homepage = "https://developer.1password.com/docs/cli/"; 92 downloadPage = "https://app-updates.agilebits.com/product_history/CLI2"; 93 - maintainers = with maintainers; [ 94 joelburget 95 khaneliman 96 ]; 97 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 98 - license = licenses.unfree; 99 inherit mainProgram platforms; 100 }; 101 }
··· 86 updateScript = ./update.sh; 87 }; 88 89 + meta = { 90 description = "1Password command-line tool"; 91 homepage = "https://developer.1password.com/docs/cli/"; 92 downloadPage = "https://app-updates.agilebits.com/product_history/CLI2"; 93 + maintainers = with lib.maintainers; [ 94 joelburget 95 khaneliman 96 ]; 97 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 98 + license = lib.licenses.unfree; 99 inherit mainProgram platforms; 100 }; 101 }
+2 -2
pkgs/by-name/_9/_915resolution/package.nix
··· 16 patchPhase = "rm *.o"; 17 installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/"; 18 19 - meta = with lib; { 20 homepage = "http://915resolution.mango-lang.org/"; 21 description = "Tool to modify Intel 800/900 video BIOS"; 22 mainProgram = "915resolution"; ··· 24 "i686-linux" 25 "x86_64-linux" 26 ]; 27 - license = licenses.publicDomain; 28 }; 29 }
··· 16 patchPhase = "rm *.o"; 17 installPhase = "mkdir -p $out/sbin; cp 915resolution $out/sbin/"; 18 19 + meta = { 20 homepage = "http://915resolution.mango-lang.org/"; 21 description = "Tool to modify Intel 800/900 video BIOS"; 22 mainProgram = "915resolution"; ··· 24 "i686-linux" 25 "x86_64-linux" 26 ]; 27 + license = lib.licenses.publicDomain; 28 }; 29 }
+4 -4
pkgs/by-name/_9/_9base/package.nix
··· 65 "troff" 66 ]; 67 68 - meta = with lib; { 69 homepage = "https://tools.suckless.org/9base/"; 70 description = "9base is a port of various original Plan 9 tools for Unix, based on plan9port"; 71 longDescription = '' ··· 74 The overall SLOC is about 66kSLOC, so this userland + all libs is much smaller than, e.g. bash. 75 9base can be used to run werc instead of the full blown plan9port. 76 ''; 77 - license = with licenses; [ 78 mit # and 79 lpl-102 80 ]; 81 - maintainers = with maintainers; [ jk ]; 82 - platforms = platforms.unix; 83 # needs additional work to support aarch64-darwin 84 # due to usage of _DARWIN_NO_64_BIT_INODE 85 broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin;
··· 65 "troff" 66 ]; 67 68 + meta = { 69 homepage = "https://tools.suckless.org/9base/"; 70 description = "9base is a port of various original Plan 9 tools for Unix, based on plan9port"; 71 longDescription = '' ··· 74 The overall SLOC is about 66kSLOC, so this userland + all libs is much smaller than, e.g. bash. 75 9base can be used to run werc instead of the full blown plan9port. 76 ''; 77 + license = with lib.licenses; [ 78 mit # and 79 lpl-102 80 ]; 81 + maintainers = with lib.maintainers; [ jk ]; 82 + platforms = lib.platforms.unix; 83 # needs additional work to support aarch64-darwin 84 # due to usage of _DARWIN_NO_64_BIT_INODE 85 broken = stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isDarwin;
+4 -4
pkgs/by-name/aa/aaaaxy/package.nix
··· 128 129 strictDeps = true; 130 131 - meta = with lib; { 132 description = "Nonlinear 2D puzzle platformer taking place in impossible spaces"; 133 mainProgram = "aaaaxy"; 134 homepage = "https://divverent.github.io/aaaaxy/"; 135 - license = licenses.asl20; 136 - maintainers = with maintainers; [ Luflosi ]; 137 - platforms = platforms.linux; 138 }; 139 }
··· 128 129 strictDeps = true; 130 131 + meta = { 132 description = "Nonlinear 2D puzzle platformer taking place in impossible spaces"; 133 mainProgram = "aaaaxy"; 134 homepage = "https://divverent.github.io/aaaaxy/"; 135 + license = lib.licenses.asl20; 136 + maintainers = with lib.maintainers; [ Luflosi ]; 137 + platforms = lib.platforms.linux; 138 }; 139 }
+3 -3
pkgs/by-name/aa/aarch64-esr-decoder/package.nix
··· 18 useFetchCargoVendor = true; 19 cargoHash = "sha256-LiNnTNpluQkomQhIOsAnUbbBftTgqgNdpT8heCrBayg="; 20 21 - meta = with lib; { 22 description = "Utility for decoding aarch64 ESR register values"; 23 homepage = "https://github.com/google/aarch64-esr-decoder"; 24 changelog = "https://github.com/google/aarch64-esr-decoder/blob/${src.rev}/CHANGELOG.md"; 25 - license = licenses.asl20; 26 - maintainers = with maintainers; [ jmbaur ]; 27 mainProgram = "aarch64-esr-decoder"; 28 }; 29 }
··· 18 useFetchCargoVendor = true; 19 cargoHash = "sha256-LiNnTNpluQkomQhIOsAnUbbBftTgqgNdpT8heCrBayg="; 20 21 + meta = { 22 description = "Utility for decoding aarch64 ESR register values"; 23 homepage = "https://github.com/google/aarch64-esr-decoder"; 24 changelog = "https://github.com/google/aarch64-esr-decoder/blob/${src.rev}/CHANGELOG.md"; 25 + license = lib.licenses.asl20; 26 + maintainers = with lib.maintainers; [ jmbaur ]; 27 mainProgram = "aarch64-esr-decoder"; 28 }; 29 }
+4 -4
pkgs/by-name/ab/abpoa/package.nix
··· 90 ''; 91 }; 92 93 - meta = with lib; { 94 description = "SIMD-based C library for fast partial order alignment using adaptive band"; 95 homepage = "https://github.com/yangao07/abPOA"; 96 changelog = "https://github.com/yangao07/abPOA/releases/tag/v${finalAttrs.version}"; 97 - license = licenses.mit; 98 - maintainers = with maintainers; [ natsukium ]; 99 mainProgram = "abpoa"; 100 - platforms = platforms.unix; 101 }; 102 })
··· 90 ''; 91 }; 92 93 + meta = { 94 description = "SIMD-based C library for fast partial order alignment using adaptive band"; 95 homepage = "https://github.com/yangao07/abPOA"; 96 changelog = "https://github.com/yangao07/abPOA/releases/tag/v${finalAttrs.version}"; 97 + license = lib.licenses.mit; 98 + maintainers = with lib.maintainers; [ natsukium ]; 99 mainProgram = "abpoa"; 100 + platforms = lib.platforms.unix; 101 }; 102 })
+3 -3
pkgs/by-name/ac/acpi/package.nix
··· 13 sha256 = "sha256-5kxuALU815dCfqMqFgUTQlsD7U8HdzP3Hx8J/zQPIws="; 14 }; 15 16 - meta = with lib; { 17 description = "Show battery status and other ACPI information"; 18 mainProgram = "acpi"; 19 longDescription = '' ··· 24 ''; 25 homepage = "https://sourceforge.net/projects/acpiclient/"; 26 license = lib.licenses.gpl2Plus; 27 - platforms = platforms.linux; 28 - maintainers = [ ]; 29 }; 30 }
··· 13 sha256 = "sha256-5kxuALU815dCfqMqFgUTQlsD7U8HdzP3Hx8J/zQPIws="; 14 }; 15 16 + meta = { 17 description = "Show battery status and other ACPI information"; 18 mainProgram = "acpi"; 19 longDescription = '' ··· 24 ''; 25 homepage = "https://sourceforge.net/projects/acpiclient/"; 26 license = lib.licenses.gpl2Plus; 27 + platforms = lib.platforms.linux; 28 + maintainers = with lib.maintainers; [ ]; 29 }; 30 }
+3 -3
pkgs/by-name/ac/acpic/package.nix
··· 27 # no tests 28 doCheck = false; 29 30 - meta = with lib; { 31 description = "Daemon extending acpid event handling capabilities"; 32 mainProgram = "acpic"; 33 homepage = "https://github.com/psliwka/acpic"; 34 - license = licenses.wtfpl; 35 - maintainers = with maintainers; [ aacebedo ]; 36 }; 37 }
··· 27 # no tests 28 doCheck = false; 29 30 + meta = { 31 description = "Daemon extending acpid event handling capabilities"; 32 mainProgram = "acpic"; 33 homepage = "https://github.com/psliwka/acpic"; 34 + license = lib.licenses.wtfpl; 35 + maintainers = with lib.maintainers; [ aacebedo ]; 36 }; 37 }
+3 -3
pkgs/by-name/ac/acpid/package.nix
··· 16 17 nativeBuildInputs = [ autoreconfHook ]; 18 19 - meta = with lib; { 20 homepage = "https://sourceforge.net/projects/acpid2/"; 21 description = "Daemon for delivering ACPI events to userspace programs"; 22 - license = licenses.gpl2Plus; 23 - platforms = platforms.linux; 24 }; 25 }
··· 16 17 nativeBuildInputs = [ autoreconfHook ]; 18 19 + meta = { 20 homepage = "https://sourceforge.net/projects/acpid2/"; 21 description = "Daemon for delivering ACPI events to userspace programs"; 22 + license = lib.licenses.gpl2Plus; 23 + platforms = lib.platforms.linux; 24 }; 25 }
+4 -4
pkgs/by-name/ac/acpilight/package.nix
··· 37 ]; 38 doInstallCheck = true; 39 40 - meta = with lib; { 41 homepage = "https://gitlab.com/wavexx/acpilight"; 42 description = "ACPI backlight control"; 43 - license = licenses.gpl3; 44 - maintainers = with maintainers; [ smakarov ]; 45 - platforms = platforms.linux; 46 mainProgram = "xbacklight"; 47 }; 48 }
··· 37 ]; 38 doInstallCheck = true; 39 40 + meta = { 41 homepage = "https://gitlab.com/wavexx/acpilight"; 42 description = "ACPI backlight control"; 43 + license = lib.licenses.gpl3; 44 + maintainers = with lib.maintainers; [ smakarov ]; 45 + platforms = lib.platforms.linux; 46 mainProgram = "xbacklight"; 47 }; 48 }
+4 -4
pkgs/by-name/ac/acsccid/package.nix
··· 64 autoconf 65 ''; 66 67 - meta = with lib; { 68 description = "PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card readers"; 69 longDescription = '' 70 acsccid is a PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card ··· 80 services.pcscd.plugins = [ pkgs.acsccid ]; 81 ''; 82 homepage = src.meta.homepage; 83 - license = licenses.lgpl2Plus; 84 - maintainers = [ ]; 85 - platforms = with platforms; unix; 86 }; 87 }
··· 64 autoconf 65 ''; 66 67 + meta = { 68 description = "PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card readers"; 69 longDescription = '' 70 acsccid is a PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card ··· 80 services.pcscd.plugins = [ pkgs.acsccid ]; 81 ''; 82 homepage = src.meta.homepage; 83 + license = lib.licenses.lgpl2Plus; 84 + maintainers = with lib.maintainers; [ ]; 85 + platforms = lib.platforms.unix; 86 }; 87 }
+3 -3
pkgs/by-name/ac/action-validator/package.nix
··· 25 branch = "main"; 26 }; 27 28 - meta = with lib; { 29 description = "Tool to validate GitHub Action and Workflow YAML files"; 30 homepage = "https://github.com/mpalmer/action-validator"; 31 - license = licenses.gpl3Plus; 32 mainProgram = "action-validator"; 33 - maintainers = with maintainers; [ thiagokokada ]; 34 }; 35 }
··· 25 branch = "main"; 26 }; 27 28 + meta = { 29 description = "Tool to validate GitHub Action and Workflow YAML files"; 30 homepage = "https://github.com/mpalmer/action-validator"; 31 + license = lib.licenses.gpl3Plus; 32 mainProgram = "action-validator"; 33 + maintainers = with lib.maintainers; [ thiagokokada ]; 34 }; 35 }
+4 -4
pkgs/by-name/ac/activate-linux/package.nix
··· 61 runHook postInstall 62 ''; 63 64 - meta = with lib; { 65 description = "\"Activate Windows\" watermark ported to Linux"; 66 homepage = "https://github.com/MrGlockenspiel/activate-linux"; 67 - license = licenses.gpl3; 68 - maintainers = with maintainers; [ 69 alexnortung 70 donovanglover 71 ]; 72 - platforms = platforms.linux; 73 mainProgram = "activate-linux"; 74 }; 75 })
··· 61 runHook postInstall 62 ''; 63 64 + meta = { 65 description = "\"Activate Windows\" watermark ported to Linux"; 66 homepage = "https://github.com/MrGlockenspiel/activate-linux"; 67 + license = lib.licenses.gpl3; 68 + maintainers = with lib.maintainers; [ 69 alexnortung 70 donovanglover 71 ]; 72 + platforms = lib.platforms.linux; 73 mainProgram = "activate-linux"; 74 }; 75 })
+4 -4
pkgs/by-name/ad/adbfs-rootless/package.nix
··· 34 runHook postInstall 35 ''; 36 37 - meta = with lib; { 38 description = "Mount Android phones on Linux with adb, no root required"; 39 mainProgram = "adbfs"; 40 inherit (src.meta) homepage; 41 - license = licenses.bsd3; 42 - maintainers = with maintainers; [ aleksana ]; 43 - platforms = platforms.unix; 44 }; 45 }
··· 34 runHook postInstall 35 ''; 36 37 + meta = { 38 description = "Mount Android phones on Linux with adb, no root required"; 39 mainProgram = "adbfs"; 40 inherit (src.meta) homepage; 41 + license = lib.licenses.bsd3; 42 + maintainers = with lib.maintainers; [ aleksana ]; 43 + platforms = lib.platforms.unix; 44 }; 45 }
+4 -4
pkgs/by-name/ad/adi1090x-plymouth-themes/package.nix
··· 51 find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \; 52 ''; 53 54 - meta = with lib; { 55 description = "Plymouth boot themes from adi1090x"; 56 longDescription = '' 57 A variety of plymouth boot screens by adi1090x. Using the default value ··· 60 ./shas.nix for available themes. 61 ''; 62 homepage = "https://github.com/adi1090x/plymouth-themes"; 63 - license = licenses.gpl3; 64 - platforms = platforms.linux; 65 - maintainers = with maintainers; [ slwst ]; 66 }; 67 }
··· 51 find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \; 52 ''; 53 54 + meta = { 55 description = "Plymouth boot themes from adi1090x"; 56 longDescription = '' 57 A variety of plymouth boot screens by adi1090x. Using the default value ··· 60 ./shas.nix for available themes. 61 ''; 62 homepage = "https://github.com/adi1090x/plymouth-themes"; 63 + license = lib.licenses.gpl3; 64 + platforms = lib.platforms.linux; 65 + maintainers = with lib.maintainers; [ slwst ]; 66 }; 67 }
+3 -3
pkgs/by-name/ad/adrgen/package.nix
··· 35 version = "v${version}"; 36 }; 37 38 - meta = with lib; { 39 homepage = "https://github.com/asiermarques/adrgen"; 40 description = "Command-line tool for generating and managing Architecture Decision Records"; 41 - license = licenses.mit; 42 - maintainers = [ ]; 43 mainProgram = "adrgen"; 44 }; 45 }
··· 35 version = "v${version}"; 36 }; 37 38 + meta = { 39 homepage = "https://github.com/asiermarques/adrgen"; 40 description = "Command-line tool for generating and managing Architecture Decision Records"; 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ ]; 43 mainProgram = "adrgen"; 44 }; 45 }
+4 -4
pkgs/by-name/ae/aefs/package.nix
··· 35 36 buildInputs = [ fuse ]; 37 38 - meta = with lib; { 39 homepage = "https://github.com/edolstra/aefs"; 40 description = "Cryptographic filesystem implemented in userspace using FUSE"; 41 - maintainers = [ ]; 42 - license = licenses.gpl2Plus; 43 - platforms = platforms.unix; 44 broken = stdenv.hostPlatform.isDarwin; 45 }; 46 }
··· 35 36 buildInputs = [ fuse ]; 37 38 + meta = { 39 homepage = "https://github.com/edolstra/aefs"; 40 description = "Cryptographic filesystem implemented in userspace using FUSE"; 41 + maintainers = with lib.maintainers; [ ]; 42 + license = lib.licenses.gpl2Plus; 43 + platforms = lib.platforms.unix; 44 broken = stdenv.hostPlatform.isDarwin; 45 }; 46 }
+4 -4
pkgs/by-name/ae/aeolus/package.nix
··· 58 echo -n "${cfg}" > $out/etc/aeolus.conf 59 ''; 60 61 - meta = with lib; { 62 description = "Synthetized (not sampled) pipe organ emulator"; 63 homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/index.html"; 64 - license = licenses.lgpl3; 65 - platforms = platforms.linux; 66 - maintainers = with maintainers; [ 67 nico202 68 orivej 69 ];
··· 58 echo -n "${cfg}" > $out/etc/aeolus.conf 59 ''; 60 61 + meta = { 62 description = "Synthetized (not sampled) pipe organ emulator"; 63 homepage = "http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/index.html"; 64 + license = lib.licenses.lgpl3; 65 + platforms = lib.platforms.linux; 66 + maintainers = with lib.maintainers; [ 67 nico202 68 orivej 69 ];
+3 -3
pkgs/by-name/ae/aerospike/package.nix
··· 45 cp target/Linux-x86_64/bin/asd $out/bin/asd 46 ''; 47 48 - meta = with lib; { 49 description = "Flash-optimized, in-memory, NoSQL database"; 50 mainProgram = "asd"; 51 homepage = "https://aerospike.com/"; 52 - license = licenses.agpl3Only; 53 platforms = [ "x86_64-linux" ]; 54 - maintainers = with maintainers; [ kalbasit ]; 55 }; 56 }
··· 45 cp target/Linux-x86_64/bin/asd $out/bin/asd 46 ''; 47 48 + meta = { 49 description = "Flash-optimized, in-memory, NoSQL database"; 50 mainProgram = "asd"; 51 homepage = "https://aerospike.com/"; 52 + license = lib.licenses.agpl3Only; 53 platforms = [ "x86_64-linux" ]; 54 + maintainers = with lib.maintainers; [ kalbasit ]; 55 }; 56 }
+4 -4
pkgs/by-name/ae/aespipe/package.nix
··· 28 --prefix PATH : $out/bin:${lib.makeBinPath [ sharutils ]} 29 ''; 30 31 - meta = with lib; { 32 description = "AES encrypting or decrypting pipe"; 33 homepage = "https://loop-aes.sourceforge.net/aespipe.README"; 34 - license = licenses.gpl2Only; 35 - maintainers = [ ]; 36 - platforms = platforms.unix; 37 }; 38 }
··· 28 --prefix PATH : $out/bin:${lib.makeBinPath [ sharutils ]} 29 ''; 30 31 + meta = { 32 description = "AES encrypting or decrypting pipe"; 33 homepage = "https://loop-aes.sourceforge.net/aespipe.README"; 34 + license = lib.licenses.gpl2Only; 35 + maintainers = with lib.maintainers; [ ]; 36 + platforms = lib.platforms.unix; 37 }; 38 }
+4 -4
pkgs/by-name/af/afetch/package.nix
··· 19 "PREFIX=${placeholder "out"}" 20 ]; 21 22 - meta = with lib; { 23 description = "Fetch program written in C"; 24 homepage = "https://github.com/13-CF/afetch"; 25 - license = licenses.gpl3Plus; 26 - maintainers = with maintainers; [ 27 dan4ik605743 28 jk 29 ]; 30 - platforms = platforms.linux; 31 mainProgram = "afetch"; 32 }; 33 }
··· 19 "PREFIX=${placeholder "out"}" 20 ]; 21 22 + meta = { 23 description = "Fetch program written in C"; 24 homepage = "https://github.com/13-CF/afetch"; 25 + license = lib.licenses.gpl3Plus; 26 + maintainers = with lib.maintainers; [ 27 dan4ik605743 28 jk 29 ]; 30 + platforms = lib.platforms.linux; 31 mainProgram = "afetch"; 32 }; 33 }
+3 -3
pkgs/by-name/af/afew/package.nix
··· 60 }; 61 }; 62 63 - meta = with lib; { 64 homepage = "https://github.com/afewmail/afew"; 65 description = "Initial tagging script for notmuch mail"; 66 mainProgram = "afew"; 67 - license = licenses.isc; 68 - maintainers = with maintainers; [ flokli ]; 69 }; 70 }
··· 60 }; 61 }; 62 63 + meta = { 64 homepage = "https://github.com/afewmail/afew"; 65 description = "Initial tagging script for notmuch mail"; 66 mainProgram = "afew"; 67 + license = lib.licenses.isc; 68 + maintainers = with lib.maintainers; [ flokli ]; 69 }; 70 }
+4 -4
pkgs/by-name/af/afsctool/package.nix
··· 30 sparsehash 31 ]; 32 33 - meta = with lib; { 34 description = "Utility that allows end-users to leverage HFS+/APFS compression"; 35 - license = licenses.unfree; 36 - maintainers = [ maintainers.viraptor ]; 37 - platforms = platforms.darwin; 38 homepage = "https://github.com/RJVB/afsctool"; 39 }; 40 }
··· 30 sparsehash 31 ]; 32 33 + meta = { 34 description = "Utility that allows end-users to leverage HFS+/APFS compression"; 35 + license = lib.licenses.unfree; 36 + maintainers = with lib.maintainers; [ viraptor ]; 37 + platforms = lib.platforms.darwin; 38 homepage = "https://github.com/RJVB/afsctool"; 39 }; 40 }
+4 -4
pkgs/by-name/af/aften/package.nix
··· 23 24 cmakeFlags = [ "-DSHARED=ON" ]; 25 26 - meta = with lib; { 27 description = "Audio encoder which generates compressed audio streams based on ATSC A/52 specification"; 28 homepage = "https://aften.sourceforge.net/"; 29 - license = licenses.lgpl21Only; 30 - platforms = platforms.unix; 31 - maintainers = with maintainers; [ emilytrau ]; 32 }; 33 }
··· 23 24 cmakeFlags = [ "-DSHARED=ON" ]; 25 26 + meta = { 27 description = "Audio encoder which generates compressed audio streams based on ATSC A/52 specification"; 28 homepage = "https://aften.sourceforge.net/"; 29 + license = lib.licenses.lgpl21Only; 30 + platforms = lib.platforms.unix; 31 + maintainers = with lib.maintainers; [ emilytrau ]; 32 }; 33 }