lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

treewide: remove with lib Part 4

liberodark c6729488 d308aa97

+1212 -1212
+4 -4
pkgs/by-name/_0/_0xpropo/package.nix
··· 23 23 runHook postInstall 24 24 ''; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Proportional version of the 0xProto font"; 28 28 homepage = "https://github.com/0xType/0xPropo"; 29 29 changelog = "https://github.com/0xType/0xPropo/releases/tag/${version}"; 30 - license = licenses.ofl; 31 - maintainers = with maintainers; [ vinnymeller ]; 32 - platforms = platforms.all; 30 + license = lib.licenses.ofl; 31 + maintainers = with lib.maintainers; [ vinnymeller ]; 32 + platforms = lib.platforms.all; 33 33 }; 34 34 }
+5 -5
pkgs/by-name/_3/_3270font/package.nix
··· 29 29 runHook postInstall 30 30 ''; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Monospaced font based on IBM 3270 terminals"; 34 34 homepage = "https://github.com/rbanffy/3270font"; 35 35 changelog = "https://github.com/rbanffy/3270font/blob/v${version}/CHANGELOG.md"; 36 36 license = [ 37 - licenses.bsd3 38 - licenses.ofl 37 + lib.licenses.bsd3 38 + lib.licenses.ofl 39 39 ]; 40 - maintainers = [ ]; 41 - platforms = platforms.all; 40 + maintainers = with lib.maintainers; [ ]; 41 + platforms = lib.platforms.all; 42 42 }; 43 43 }
+4 -4
pkgs/by-name/_6/_6tunnel/package.nix
··· 18 18 19 19 nativeBuildInputs = [ autoreconfHook ]; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Tunnelling for application that don't speak IPv6"; 23 23 mainProgram = "6tunnel"; 24 24 homepage = "https://github.com/wojtekka/6tunnel"; 25 25 changelog = "https://github.com/wojtekka/6tunnel/blob/${version}/ChangeLog"; 26 - license = licenses.gpl2Only; 27 - maintainers = with maintainers; [ Br1ght0ne ]; 28 - platforms = platforms.unix; 26 + license = lib.licenses.gpl2Only; 27 + maintainers = with lib.maintainers; [ Br1ght0ne ]; 28 + platforms = lib.platforms.unix; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/a5/a52dec/package.nix
··· 33 33 # but it's better to disable tests than loose ASLR on i686 34 34 doCheck = !stdenv.hostPlatform.isi686; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 description = "ATSC A/52 stream decoder"; 38 38 homepage = "https://liba52.sourceforge.io/"; 39 39 changelog = "https://git.adelielinux.org/community/a52dec/-/blob/v${version}/ChangeLog?ref_type=tags"; 40 - license = licenses.gpl2Plus; 41 - maintainers = with maintainers; [ wegank ]; 40 + license = lib.licenses.gpl2Plus; 41 + maintainers = with lib.maintainers; [ wegank ]; 42 42 mainProgram = "a52dec"; 43 - platforms = platforms.unix; 43 + platforms = lib.platforms.unix; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/ae/aeacus/package.nix
··· 25 25 # Tests require network access 26 26 doCheck = false; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Vulnerability remediation scoring system"; 30 30 homepage = "https://github.com/elysium-suite/aeacus"; 31 31 changelog = "https://github.com/elysium-suite/aeacus/releases/tag/v${version}"; 32 - license = licenses.gpl2Only; 33 - maintainers = with maintainers; [ fab ]; 32 + license = lib.licenses.gpl2Only; 33 + maintainers = with lib.maintainers; [ fab ]; 34 34 mainProgram = "aeacus"; 35 - platforms = platforms.linux; 35 + platforms = lib.platforms.linux; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/ag/agebox/package.nix
··· 22 22 "-X main.Version=${version}" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 homepage = "https://github.com/slok/agebox"; 27 27 changelog = "https://github.com/slok/agebox/releases/tag/v${version}"; 28 28 description = "Age based repository file encryption gitops tool"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ lesuisse ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ lesuisse ]; 31 31 mainProgram = "agebox"; 32 32 }; 33 33 }
+4 -4
pkgs/by-name/ag/agi/package.nix
··· 68 68 ]; 69 69 }); 70 70 71 - meta = with lib; { 71 + meta = { 72 72 description = "Android GPU Inspector"; 73 73 homepage = "https://gpuinspector.dev"; 74 74 changelog = "https://github.com/google/agi/releases/tag/v${version}"; 75 75 platforms = [ "x86_64-linux" ]; 76 - license = licenses.asl20; 77 - maintainers = with maintainers; [ kashw2 ]; 78 - sourceProvenance = with sourceTypes; [ 76 + license = lib.licenses.asl20; 77 + maintainers = with lib.maintainers; [ kashw2 ]; 78 + sourceProvenance = with lib.sourceTypes; [ 79 79 binaryBytecode 80 80 binaryNativeCode 81 81 ];
+4 -4
pkgs/by-name/ah/aha/package.nix
··· 19 19 20 20 enableParallelBuilding = true; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "ANSI HTML Adapter"; 24 24 mainProgram = "aha"; 25 25 longDescription = '' ··· 27 27 ''; 28 28 homepage = "https://github.com/theZiz/aha"; 29 29 changelog = "https://github.com/theZiz/aha/blob/${version}/CHANGELOG"; 30 - license = with licenses; [ 30 + license = with lib.licenses; [ 31 31 lgpl2Plus 32 32 mpl11 33 33 ]; 34 - maintainers = with maintainers; [ pSub ]; 35 - platforms = platforms.all; 34 + maintainers = with lib.maintainers; [ pSub ]; 35 + platforms = lib.platforms.all; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/an/ansible-doctor/package.nix
··· 53 53 "ansibledoctor" 54 54 ]; 55 55 56 - meta = with lib; { 56 + meta = { 57 57 description = "Annotation based documentation for your Ansible roles"; 58 58 mainProgram = "ansible-doctor"; 59 59 homepage = "https://github.com/thegeeklab/ansible-doctor"; 60 60 changelog = "https://github.com/thegeeklab/ansible-doctor/releases/tag/v${version}"; 61 - license = licenses.lgpl3Only; 62 - maintainers = with maintainers; [ tboerger ]; 61 + license = lib.licenses.lgpl3Only; 62 + maintainers = with lib.maintainers; [ tboerger ]; 63 63 }; 64 64 }
+3 -3
pkgs/by-name/an/ansible-language-server/package.nix
··· 34 34 npmPackFlags = [ "--ignore-scripts" ]; 35 35 passthru.updateScript = nix-update-script { }; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 changelog = "https://github.com/ansible/ansible-language-server/releases/tag/v${version}"; 39 39 description = "Ansible Language Server"; 40 40 mainProgram = "ansible-language-server"; 41 41 homepage = "https://github.com/ansible/ansible-language-server"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ hexa ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ hexa ]; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/at/atasm/package.nix
··· 55 55 mv docs/* $out/share/doc/${pname} 56 56 ''; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 homepage = "https://github.com/CycoPH/atasm"; 60 60 description = "Commandline 6502 assembler compatible with Mac/65"; 61 - license = licenses.gpl2Plus; 61 + license = lib.licenses.gpl2Plus; 62 62 changelog = "https://github.com/CycoPH/atasm/releases/tag/V${version}"; 63 - maintainers = with maintainers; [ ]; 64 - platforms = with platforms; unix; 63 + maintainers = with lib.maintainers; [ ]; 64 + platforms = with lib.platforms; unix; 65 65 }; 66 66 }
+4 -4
pkgs/by-name/at/atftp/package.nix
··· 48 48 49 49 doCheck = true; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 description = "Advanced tftp tools"; 53 53 changelog = "https://sourceforge.net/p/atftp/code/ci/v${version}/tree/Changelog"; 54 54 homepage = "https://sourceforge.net/projects/atftp/"; 55 - license = licenses.gpl2Plus; 56 - maintainers = with maintainers; [ raskin ]; 57 - platforms = platforms.linux; 55 + license = lib.licenses.gpl2Plus; 56 + maintainers = with lib.maintainers; [ raskin ]; 57 + platforms = lib.platforms.linux; 58 58 }; 59 59 }
+5 -5
pkgs/by-name/at/athens/package.nix
··· 35 35 tests.version = testers.testVersion { package = athens; }; 36 36 }; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Go module datastore and proxy"; 40 40 homepage = "https://github.com/gomods/athens"; 41 - changelog = "https://github.com/gomods/athens/releases/tag/v${version}"; 42 - license = licenses.mit; 41 + changelog = "https://github.com/gomods/athens/releases/tag/v${finalAttrs.version}"; 42 + license = lib.licenses.mit; 43 43 mainProgram = "athens"; 44 - maintainers = with maintainers; [ 44 + maintainers = with lib.maintainers; [ 45 45 katexochen 46 46 malt3 47 47 ]; 48 - platforms = platforms.unix; 48 + platforms = lib.platforms.unix; 49 49 }; 50 50 })
+3 -3
pkgs/by-name/at/atomic-swap/package.nix
··· 40 40 41 41 passthru.updateScript = nix-update-script { }; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 homepage = "https://github.com/AthanorLabs/atomic-swap"; 45 45 changelog = "https://github.com/AthanorLabs/atomic-swap/releases/tag/v${version}"; 46 46 description = "ETH-XMR atomic swap implementation"; 47 - license = with licenses; [ lgpl3Only ]; 48 - maintainers = with maintainers; [ 47 + license = with lib.licenses; [ lgpl3Only ]; 48 + maintainers = with lib.maintainers; [ 49 49 happysalada 50 50 lord-valen 51 51 ];
+3 -3
pkgs/by-name/au/audiness/package.nix
··· 31 31 32 32 pythonImportsCheck = [ "audiness" ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "CLI tool to interact with Nessus"; 36 36 homepage = "https://github.com/audiusGmbH/audiness"; 37 37 changelog = "https://github.com/audiusGmbH/audiness/releases/tag/${version}"; 38 - license = licenses.mit; 39 - maintainers = with maintainers; [ fab ]; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ fab ]; 40 40 mainProgram = "audiness"; 41 41 }; 42 42 }
+3 -3
pkgs/by-name/au/audion/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-kIrbHt6aAUgdF4Jx/aUOYpiBj1+pyFLCVak6R+JN2Ug="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Ping the host continuously and write results to a file"; 23 23 homepage = "https://github.com/audiusGmbH/audion"; 24 24 changelog = "https://github.com/audiusGmbH/audion/releases/tag/${version}"; 25 - license = licenses.mit; 26 - maintainers = with maintainers; [ fab ]; 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ fab ]; 27 27 mainProgram = "audion"; 28 28 }; 29 29 }
+4 -4
pkgs/by-name/au/audiowaveform/package.nix
··· 47 47 # One test is failing, see PR #101947 48 48 doCheck = false; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "C++ program to generate waveform data and render waveform images from audio files"; 52 52 longDescription = '' 53 53 audiowaveform is a C++ command-line application that generates waveform data from either MP3, WAV, FLAC, or Ogg Vorbis format audio files. ··· 55 55 ''; 56 56 homepage = "https://github.com/bbc/audiowaveform"; 57 57 changelog = "https://github.com/bbc/audiowaveform/blob/${version}/ChangeLog"; 58 - license = licenses.gpl3Plus; 59 - platforms = platforms.all; 60 - maintainers = with maintainers; [ edbentley ]; 58 + license = lib.licenses.gpl3Plus; 59 + platforms = lib.platforms.all; 60 + maintainers = with lib.maintainers; [ edbentley ]; 61 61 mainProgram = "audiowaveform"; 62 62 }; 63 63 }
+4 -4
pkgs/by-name/au/augeas/package.nix
··· 62 62 "dev" 63 63 ]; 64 64 65 - meta = with lib; { 65 + meta = { 66 66 description = "Configuration editing tool"; 67 - license = licenses.lgpl21Only; 67 + license = lib.licenses.lgpl21Only; 68 68 homepage = "https://augeas.net/"; 69 69 changelog = "https://github.com/hercules-team/augeas/releases/tag/release-${version}"; 70 70 mainProgram = "augtool"; 71 - maintainers = with maintainers; [ offline ]; 72 - platforms = platforms.unix; 71 + maintainers = with lib.maintainers; [ offline ]; 72 + platforms = lib.platforms.unix; 73 73 }; 74 74 }
+3 -3
pkgs/by-name/au/auth0-cli/package.nix
··· 47 47 48 48 subPackages = [ "cmd/auth0" ]; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Supercharge your developer workflow"; 52 52 homepage = "https://auth0.github.io/auth0-cli"; 53 53 changelog = "https://github.com/auth0/auth0-cli/releases/tag/v${version}"; 54 - license = licenses.mit; 55 - maintainers = with maintainers; [ matthewcroughan ]; 54 + license = lib.licenses.mit; 55 + maintainers = with lib.maintainers; [ matthewcroughan ]; 56 56 mainProgram = "auth0"; 57 57 }; 58 58 }
+4 -4
pkgs/by-name/au/authentik/package.nix
··· 25 25 hash = "sha256-idShMSYIrf3ViG9VFNGNu6TSjBz3Q+GJMMeCzcJwfG4="; 26 26 }; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Authentication glue you need"; 30 30 changelog = "https://github.com/goauthentik/authentik/releases/tag/version%2F${version}"; 31 31 homepage = "https://goauthentik.io/"; 32 - license = licenses.mit; 33 - platforms = platforms.linux; 32 + license = lib.licenses.mit; 33 + platforms = lib.platforms.linux; 34 34 broken = stdenvNoCC.buildPlatform != stdenvNoCC.hostPlatform; 35 - maintainers = with maintainers; [ 35 + maintainers = with lib.maintainers; [ 36 36 jvanbruegge 37 37 risson 38 38 ];
+3 -3
pkgs/by-name/au/autobloody/package.nix
··· 36 36 "autobloody" 37 37 ]; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "Tool to automatically exploit Active Directory privilege escalation paths"; 41 41 homepage = "https://github.com/CravateRouge/autobloody"; 42 42 changelog = "https://github.com/CravateRouge/autobloody/releases/tag/v${version}"; 43 - license = licenses.mit; 44 - maintainers = with maintainers; [ fab ]; 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ fab ]; 45 45 mainProgram = "autobloody"; 46 46 }; 47 47 }
+3 -3
pkgs/by-name/au/autocorrect/package.nix
··· 34 34 35 35 passthru.updateScript = ./update.sh; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Linter and formatter for help you improve copywriting, to correct spaces, punctuations between CJK (Chinese, Japanese, Korean)"; 39 39 mainProgram = "autocorrect"; 40 40 homepage = "https://huacnlee.github.io/autocorrect"; 41 41 changelog = "https://github.com/huacnlee/autocorrect/releases/tag/v${version}"; 42 - license = licenses.mit; 43 - maintainers = [ ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ ]; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/au/automatic-timezoned/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-H4bFSqt8hOH6tF2WO1mQqqmbK9U2qlFC+7swz/xj1I8="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Automatically update system timezone based on location"; 23 23 homepage = "https://github.com/maxbrunet/automatic-timezoned"; 24 24 changelog = "https://github.com/maxbrunet/automatic-timezoned/blob/v${version}/CHANGELOG.md"; 25 - license = licenses.gpl3; 26 - maintainers = with maintainers; [ maxbrunet ]; 27 - platforms = platforms.linux; 25 + license = lib.licenses.gpl3; 26 + maintainers = with lib.maintainers; [ maxbrunet ]; 27 + platforms = lib.platforms.linux; 28 28 mainProgram = "automatic-timezoned"; 29 29 }; 30 30 }
+5 -5
pkgs/by-name/ay/ayatana-ido/package.nix
··· 29 29 30 30 strictDeps = true; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Ayatana Display Indicator Objects"; 34 34 homepage = "https://github.com/AyatanaIndicators/ayatana-ido"; 35 35 changelog = "https://github.com/AyatanaIndicators/ayatana-ido/blob/${version}/ChangeLog"; 36 36 license = [ 37 - licenses.lgpl3Plus 38 - licenses.lgpl21Plus 37 + lib.licenses.lgpl3Plus 38 + lib.licenses.lgpl21Plus 39 39 ]; 40 - maintainers = [ maintainers.nickhu ]; 41 - platforms = platforms.linux; 40 + maintainers = [ lib.maintainers.nickhu ]; 41 + platforms = lib.platforms.linux; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/az/azure-storage-azcopy/package.nix
··· 25 25 ln -rs "$out/bin/azure-storage-azcopy" "$out/bin/azcopy" 26 26 ''; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "New Azure Storage data transfer utility - AzCopy v10"; 30 30 homepage = "https://github.com/Azure/azure-storage-azcopy"; 31 31 changelog = "https://github.com/Azure/azure-storage-azcopy/releases/tag/v${version}"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ kashw2 ]; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ kashw2 ]; 34 34 }; 35 35 }
+4 -4
pkgs/by-name/bc/bcg729/package.nix
··· 25 25 --replace '\$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR} 26 26 ''; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Opensource implementation of both encoder and decoder of the ITU G729 Annex A/B speech codec"; 30 30 homepage = "https://linphone.org/technical-corner/bcg729"; 31 31 changelog = "https://gitlab.linphone.org/BC/public/bcg729/raw/${version}/NEWS"; 32 - license = licenses.gpl3Plus; 33 - maintainers = with maintainers; [ c0bw3b ]; 34 - platforms = platforms.all; 32 + license = lib.licenses.gpl3Plus; 33 + maintainers = with lib.maintainers; [ c0bw3b ]; 34 + platforms = lib.platforms.all; 35 35 }; 36 36 }
+4 -4
pkgs/by-name/bp/bpfmon/package.nix
··· 26 26 "PREFIX=$(out)" 27 27 ]; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "BPF based visual packet rate monitor"; 31 31 mainProgram = "bpfmon"; 32 32 homepage = "https://github.com/bbonev/bpfmon"; 33 33 changelog = "https://github.com/bbonev/bpfmon/releases/tag/v${version}"; 34 - maintainers = with maintainers; [ arezvov ]; 35 - license = licenses.gpl2Plus; 36 - platforms = platforms.linux; 34 + maintainers = with lib.maintainers; [ arezvov ]; 35 + license = lib.licenses.gpl2Plus; 36 + platforms = lib.platforms.linux; 37 37 }; 38 38 }
+4 -4
pkgs/by-name/bp/bpftrace/package.nix
··· 75 75 bpf = nixosTests.bpf; 76 76 }; 77 77 78 - meta = with lib; { 78 + meta = { 79 79 description = "High-level tracing language for Linux eBPF"; 80 80 homepage = "https://github.com/bpftrace/bpftrace"; 81 81 changelog = "https://github.com/bpftrace/bpftrace/releases/tag/v${version}"; 82 82 mainProgram = "bpftrace"; 83 - license = licenses.asl20; 84 - maintainers = with maintainers; [ 83 + license = lib.licenses.asl20; 84 + maintainers = with lib.maintainers; [ 85 85 rvl 86 86 thoughtpolice 87 87 martinetd 88 88 mfrw 89 89 illustris 90 90 ]; 91 - platforms = platforms.linux; 91 + platforms = lib.platforms.linux; 92 92 }; 93 93 }
+3 -3
pkgs/by-name/bt/btcd/package.nix
··· 29 29 cp sample-btcd.conf $DIR 30 30 ''; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Alternative full node bitcoin implementation written in Go (golang)"; 34 34 homepage = "https://github.com/btcsuite/btcd"; 35 35 changelog = "https://github.com/btcsuite/btcd/releases/tag/v${version}"; 36 - license = licenses.isc; 37 - maintainers = with maintainers; [ _0xB10C ]; 36 + license = lib.licenses.isc; 37 + maintainers = with lib.maintainers; [ _0xB10C ]; 38 38 }; 39 39 }
+4 -4
pkgs/by-name/bt/btcpayserver/package.nix
··· 30 30 mv $out/bin/{BTCPayServer,btcpayserver} || : 31 31 ''; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "Self-hosted, open-source cryptocurrency payment processor"; 35 35 homepage = "https://btcpayserver.org"; 36 36 changelog = "https://github.com/btcpayserver/btcpayserver/blob/v${version}/Changelog.md"; 37 - maintainers = with maintainers; [ 37 + maintainers = with lib.maintainers; [ 38 38 kcalvinalvin 39 39 erikarvstedt 40 40 ]; 41 - license = licenses.mit; 42 - platforms = platforms.linux ++ platforms.darwin; 41 + license = lib.licenses.mit; 42 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 43 43 }; 44 44 }
+4 -4
pkgs/by-name/bt/btop/package.nix
··· 51 51 versionCheckProgramArg = "--version"; 52 52 doInstallCheck = true; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 description = "Monitor of resources"; 56 56 homepage = "https://github.com/aristocratos/btop"; 57 57 changelog = "https://github.com/aristocratos/btop/blob/v${version}/CHANGELOG.md"; 58 - license = licenses.asl20; 59 - platforms = platforms.linux ++ platforms.darwin; 60 - maintainers = with maintainers; [ 58 + license = lib.licenses.asl20; 59 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 60 + maintainers = with lib.maintainers; [ 61 61 khaneliman 62 62 rmcgibbo 63 63 ];
+4 -4
pkgs/by-name/bt/btrfs-progs/package.nix
··· 91 91 rev-prefix = "v"; 92 92 }; 93 93 94 - meta = with lib; { 94 + meta = { 95 95 description = "Utilities for the btrfs filesystem"; 96 96 homepage = "https://btrfs.readthedocs.io/en/latest/"; 97 97 changelog = "https://github.com/kdave/btrfs-progs/raw/v${version}/CHANGES"; 98 - license = licenses.gpl2Only; 98 + license = lib.licenses.gpl2Only; 99 99 mainProgram = "btrfs"; 100 - maintainers = with maintainers; [ raskin ]; 101 - platforms = platforms.linux; 100 + maintainers = with lib.maintainers; [ raskin ]; 101 + platforms = lib.platforms.linux; 102 102 }; 103 103 }
+3 -3
pkgs/by-name/bu/buck2/package.nix
··· 140 140 }; 141 141 }; 142 142 143 - meta = with lib; { 143 + meta = { 144 144 description = "Fast, hermetic, multi-language build system"; 145 145 homepage = "https://buck2.build"; 146 146 changelog = "https://github.com/facebook/buck2/releases/tag/${version}"; 147 - license = with licenses; [ 147 + license = with lib.licenses; [ 148 148 asl20 # or 149 149 mit 150 150 ]; 151 151 mainProgram = "buck2"; 152 - maintainers = with maintainers; [ thoughtpolice ]; 152 + maintainers = with lib.maintainers; [ thoughtpolice ]; 153 153 platforms = [ 154 154 "x86_64-linux" 155 155 "aarch64-linux"
+4 -4
pkgs/by-name/bu/bun/package.nix
··· 120 120 done 121 121 ''; 122 122 }; 123 - meta = with lib; { 123 + meta = { 124 124 homepage = "https://bun.sh"; 125 125 changelog = "https://bun.sh/blog/bun-v${version}"; 126 126 description = "Incredibly fast JavaScript runtime, bundler, transpiler and package manager – all in one"; 127 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 127 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 128 128 longDescription = '' 129 129 All in one fast & easy-to-use tool. Instead of 1,000 node_modules for development, you only need bun. 130 130 ''; 131 - license = with licenses; [ 131 + license = with lib.licenses; [ 132 132 mit # bun core 133 133 lgpl21Only # javascriptcore and webkit 134 134 ]; 135 135 mainProgram = "bun"; 136 - maintainers = with maintainers; [ 136 + maintainers = with lib.maintainers; [ 137 137 DAlperin 138 138 jk 139 139 thilobillerbeck
+4 -4
pkgs/by-name/cj/cjose/package.nix
··· 46 46 "--with-openssl=${openssl.dev}" 47 47 ]; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 homepage = "https://github.com/zmartzone/cjose"; 51 51 changelog = "https://github.com/zmartzone/cjose/blob/${version}/CHANGELOG.md"; 52 52 description = "C library for Javascript Object Signing and Encryption. This is a maintained fork of the original project"; 53 - license = licenses.mit; 54 - maintainers = with maintainers; [ midchildan ]; 55 - platforms = platforms.all; 53 + license = lib.licenses.mit; 54 + maintainers = with lib.maintainers; [ midchildan ]; 55 + platforms = lib.platforms.all; 56 56 }; 57 57 }
+4 -4
pkgs/by-name/cq/cq/package.nix
··· 36 36 "-H:ReflectionConfigurationFiles=${build-src}/package/reflection-config.json" 37 37 ]; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "Clojure Query: A Command-line Data Processor for JSON, YAML, EDN, XML and more"; 41 41 homepage = "https://github.com/markus-wa/cq"; 42 42 changelog = "https://github.com/markus-wa/cq/releases/releases/tag/${version}"; 43 - license = licenses.epl20; 44 - maintainers = with maintainers; [ farcaller ]; 45 - platforms = platforms.unix; 43 + license = lib.licenses.epl20; 44 + maintainers = with lib.maintainers; [ farcaller ]; 45 + platforms = lib.platforms.unix; 46 46 }; 47 47 }
+3 -3
pkgs/by-name/cs/csvq/package.nix
··· 24 24 version = "csvq version ${version}"; 25 25 }; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 description = "SQL-like query language for CSV"; 29 29 mainProgram = "csvq"; 30 30 homepage = "https://mithrandie.github.io/csvq/"; 31 31 changelog = "https://github.com/mithrandie/csvq/releases/tag/v${version}"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ tomodachi94 ]; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ tomodachi94 ]; 34 34 }; 35 35 }
+3 -3
pkgs/by-name/cu/cups-printers/package.nix
··· 34 34 35 35 pythonImportsCheck = [ "cups_printers" ]; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Tool for interacting with a CUPS server"; 39 39 homepage = "https://github.com/audiusGmbH/cups-printers"; 40 40 changelog = "https://github.com/audiusGmbH/cups-printers/blob/${version}/CHANGELOG.md"; 41 - license = licenses.mit; 42 - maintainers = with maintainers; [ fab ]; 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ fab ]; 43 43 mainProgram = "cups-printers"; 44 44 }; 45 45 }
+3 -3
pkgs/by-name/cv/cvemap/package.nix
··· 26 26 "-w" 27 27 ]; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Tool to work with CVEs"; 31 31 homepage = "https://github.com/projectdiscovery/cvemap"; 32 32 changelog = "https://github.com/projectdiscovery/cvemap/releases/tag/v${version}"; 33 - license = licenses.mit; 34 - maintainers = with maintainers; [ fab ]; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ fab ]; 35 35 mainProgram = "cvemap"; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/cw/cwltool/package.nix
··· 99 99 "cwltool" 100 100 ]; 101 101 102 - meta = with lib; { 102 + meta = { 103 103 description = "Common Workflow Language reference implementation"; 104 104 homepage = "https://www.commonwl.org"; 105 105 changelog = "https://github.com/common-workflow-language/cwltool/releases/tag/${version}"; 106 - license = licenses.asl20; 107 - maintainers = with maintainers; [ veprbl ]; 106 + license = lib.licenses.asl20; 107 + maintainers = with lib.maintainers; [ veprbl ]; 108 108 mainProgram = "cwltool"; 109 109 }; 110 110 }
+3 -3
pkgs/by-name/cz/cz-cli/package.nix
··· 17 17 18 18 npmDepsHash = "sha256-zQ0T/1khnn+CXm/3yc9nANL0ROEEE03U5fV57btEmPg="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Commitizen command line utility"; 22 22 homepage = "https://commitizen.github.io/cz-cli"; 23 23 changelog = "https://github.com/commitizen/cz-cli/releases/tag/v${version}"; 24 - maintainers = with maintainers; [ 24 + maintainers = with lib.maintainers; [ 25 25 freezeboy 26 26 natsukium 27 27 ]; 28 - license = licenses.mit; 28 + license = lib.licenses.mit; 29 29 }; 30 30 }
+3 -3
pkgs/by-name/d2/d2/package.nix
··· 47 47 version = "v${version}"; 48 48 }; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Modern diagram scripting language that turns text to diagrams"; 52 52 mainProgram = "d2"; 53 53 homepage = "https://d2lang.com"; 54 54 changelog = "https://github.com/terrastruct/d2/releases/tag/v${version}"; 55 - license = licenses.mpl20; 56 - maintainers = with maintainers; [ 55 + license = lib.licenses.mpl20; 56 + maintainers = with lib.maintainers; [ 57 57 dit7ya 58 58 kashw2 59 59 ];
+4 -4
pkgs/by-name/dc/dconf-editor/package.nix
··· 69 69 }; 70 70 }; 71 71 72 - meta = with lib; { 72 + meta = { 73 73 description = "GSettings editor for GNOME"; 74 74 mainProgram = "dconf-editor"; 75 75 homepage = "https://apps.gnome.org/DconfEditor/"; 76 76 changelog = "https://gitlab.gnome.org/GNOME/dconf-editor/-/blob/${version}/NEWS?ref_type=tags"; 77 - license = licenses.gpl3Plus; 78 - teams = [ teams.gnome ]; 79 - platforms = platforms.unix; 77 + license = lib.licenses.gpl3Plus; 78 + teams = [ lib.teams.gnome ]; 79 + platforms = lib.platforms.unix; 80 80 }; 81 81 }
+4 -4
pkgs/by-name/dd/ddcutil/package.nix
··· 40 40 41 41 enableParallelBuilding = true; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 homepage = "http://www.ddcutil.com/"; 45 45 description = "Query and change Linux monitor settings using DDC/CI and USB"; 46 - license = licenses.gpl2Plus; 47 - platforms = platforms.linux; 48 - maintainers = with maintainers; [ rnhmjoj ]; 46 + license = lib.licenses.gpl2Plus; 47 + platforms = lib.platforms.linux; 48 + maintainers = with lib.maintainers; [ rnhmjoj ]; 49 49 changelog = "https://github.com/rockowitz/ddcutil/blob/v${version}/CHANGELOG.md"; 50 50 mainProgram = "ddcutil"; 51 51 };
+4 -4
pkgs/by-name/dg/dgoss/package.nix
··· 36 36 }; 37 37 }; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 homepage = "https://github.com/goss-org/goss/blob/v${version}/extras/dgoss/README.md"; 41 41 changelog = "https://github.com/goss-org/goss/releases/tag/v${version}"; 42 42 description = "Convenience wrapper around goss that aims to bring the simplicity of goss to docker containers"; 43 - license = licenses.asl20; 44 - platforms = platforms.linux; 45 - maintainers = with maintainers; [ 43 + license = lib.licenses.asl20; 44 + platforms = lib.platforms.linux; 45 + maintainers = with lib.maintainers; [ 46 46 hyzual 47 47 anthonyroussel 48 48 ];
+4 -4
pkgs/by-name/dh/dhcpdump/package.nix
··· 38 38 runHook postBuild 39 39 ''; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses"; 43 43 homepage = "https://github.com/bbonev/dhcpdump"; 44 44 changelog = "https://github.com/bbonev/dhcpdump/releases/tag/v${version}"; 45 - platforms = platforms.linux; 46 - maintainers = with maintainers; [ nickcao ]; 47 - license = licenses.bsd2; 45 + platforms = lib.platforms.linux; 46 + maintainers = with lib.maintainers; [ nickcao ]; 47 + license = lib.licenses.bsd2; 48 48 mainProgram = "dhcpdump"; 49 49 }; 50 50 }
+3 -3
pkgs/by-name/dn/dnscontrol/package.nix
··· 48 48 }; 49 49 }; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 description = "Synchronize your DNS to multiple providers from a simple DSL"; 53 53 homepage = "https://dnscontrol.org/"; 54 54 changelog = "https://github.com/StackExchange/dnscontrol/releases/tag/v${version}"; 55 - license = licenses.mit; 56 - maintainers = with maintainers; [ SuperSandro2000 ]; 55 + license = lib.licenses.mit; 56 + maintainers = with lib.maintainers; [ SuperSandro2000 ]; 57 57 mainProgram = "dnscontrol"; 58 58 }; 59 59 }
+3 -3
pkgs/by-name/dn/dnsmonster/package.nix
··· 27 27 "-X=github.com/mosajjal/dnsmonster/util.releaseVersion=${version}" 28 28 ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Passive DNS Capture and Monitoring Toolkit"; 32 32 homepage = "https://github.com/mosajjal/dnsmonster"; 33 33 changelog = "https://github.com/mosajjal/dnsmonster/releases/tag/v${version}"; 34 - license = licenses.gpl2Only; 35 - maintainers = with maintainers; [ fab ]; 34 + license = lib.licenses.gpl2Only; 35 + maintainers = with lib.maintainers; [ fab ]; 36 36 broken = stdenv.hostPlatform.isDarwin; 37 37 mainProgram = "dnsmonster"; 38 38 };
+4 -4
pkgs/by-name/dn/dnsperf/package.nix
··· 46 46 47 47 doCheck = true; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "Tools for DNS benchmaring"; 51 51 homepage = "https://www.dns-oarc.net/tools/dnsperf"; 52 52 changelog = "https://github.com/DNS-OARC/dnsperf/releases/tag/v${version}"; 53 - license = licenses.isc; 54 - platforms = platforms.unix; 53 + license = lib.licenses.isc; 54 + platforms = lib.platforms.unix; 55 55 mainProgram = "dnsperf"; 56 - maintainers = with maintainers; [ 56 + maintainers = with lib.maintainers; [ 57 57 vcunat 58 58 mfrw 59 59 ];
+3 -3
pkgs/by-name/dn/dnsrecon/package.nix
··· 32 32 33 33 pythonImportsCheck = [ "dnsrecon" ]; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "DNS Enumeration script"; 37 37 homepage = "https://github.com/darkoperator/dnsrecon"; 38 38 changelog = "https://github.com/darkoperator/dnsrecon/releases/tag/${version}"; 39 - license = licenses.gpl2Only; 40 - maintainers = with maintainers; [ 39 + license = lib.licenses.gpl2Only; 40 + maintainers = with lib.maintainers; [ 41 41 c0bw3b 42 42 fab 43 43 ];
+3 -3
pkgs/by-name/dn/dnstwist/package.nix
··· 36 36 "dnstwist" 37 37 ]; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "Domain name permutation engine for detecting homograph phishing attacks"; 41 41 homepage = "https://github.com/elceef/dnstwist"; 42 42 changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}"; 43 - license = with licenses; [ gpl3Only ]; 44 - maintainers = with maintainers; [ fab ]; 43 + license = with lib.licenses; [ gpl3Only ]; 44 + maintainers = with lib.maintainers; [ fab ]; 45 45 mainProgram = "dnstwist"; 46 46 }; 47 47 }
+3 -3
pkgs/by-name/dn/dnsx/package.nix
··· 34 34 35 35 versionCheckProgramArg = "-version"; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Fast and multi-purpose DNS toolkit"; 39 39 longDescription = '' 40 40 dnsx is a fast and multi-purpose DNS toolkit allow to run multiple ··· 44 44 ''; 45 45 homepage = "https://github.com/projectdiscovery/dnsx"; 46 46 changelog = "https://github.com/projectdiscovery/dnsx/releases/tag/v${version}"; 47 - license = licenses.mit; 48 - maintainers = with maintainers; [ fab ]; 47 + license = lib.licenses.mit; 48 + maintainers = with lib.maintainers; [ fab ]; 49 49 mainProgram = "dnsx"; 50 50 }; 51 51 }
+4 -4
pkgs/by-name/dr/drawing/package.nix
··· 62 62 63 63 strictDeps = false; 64 64 65 - meta = with lib; { 65 + meta = { 66 66 description = "Free basic image editor, similar to Microsoft Paint, but aiming at the GNOME desktop"; 67 67 mainProgram = "drawing"; 68 68 homepage = "https://maoschanz.github.io/drawing/"; 69 69 changelog = "https://github.com/maoschanz/drawing/releases/tag/${version}"; 70 - maintainers = with maintainers; [ mothsart ]; 71 - license = licenses.gpl3Plus; 72 - platforms = platforms.linux; 70 + maintainers = with lib.maintainers; [ mothsart ]; 71 + license = lib.licenses.gpl3Plus; 72 + platforms = lib.platforms.linux; 73 73 }; 74 74 }
+3 -3
pkgs/by-name/dr/driftctl/package.nix
··· 47 47 runHook postInstallCheck 48 48 ''; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 homepage = "https://driftctl.com/"; 52 52 changelog = "https://github.com/snyk/driftctl/releases/tag/v${version}"; 53 53 description = "Detect, track and alert on infrastructure drift"; ··· 56 56 driftctl is a free and open-source CLI that warns of infrastructure drift 57 57 and fills in the missing piece in your DevSecOps toolbox. 58 58 ''; 59 - license = licenses.asl20; 60 - maintainers = with maintainers; [ 59 + license = lib.licenses.asl20; 60 + maintainers = with lib.maintainers; [ 61 61 kaction 62 62 jk 63 63 qjoly
+4 -4
pkgs/by-name/dr/driftnet/package.nix
··· 49 49 openssl 50 50 ]; 51 51 52 - meta = with lib; { 52 + meta = { 53 53 description = "Watches network traffic, and picks out and displays JPEG and GIF images for display"; 54 54 homepage = "https://github.com/deiv/driftnet"; 55 55 changelog = "https://github.com/deiv/driftnet/releases/tag/v${version}"; 56 - license = licenses.gpl2Plus; 57 - maintainers = with maintainers; [ offline ]; 58 - platforms = platforms.linux ++ platforms.darwin; 56 + license = lib.licenses.gpl2Plus; 57 + maintainers = with lib.maintainers; [ offline ]; 58 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 59 59 mainProgram = "driftnet"; 60 60 }; 61 61 }
+4 -4
pkgs/by-name/dr/dropbear/package.nix
··· 65 65 libxcrypt 66 66 ]; 67 67 68 - meta = with lib; { 68 + meta = { 69 69 description = "Small footprint implementation of the SSH 2 protocol"; 70 70 homepage = "https://matt.ucc.asn.au/dropbear/dropbear.html"; 71 71 changelog = "https://github.com/mkj/dropbear/raw/DROPBEAR_${version}/CHANGES"; 72 - license = licenses.mit; 73 - maintainers = with maintainers; [ abbradar ]; 74 - platforms = platforms.linux; 72 + license = lib.licenses.mit; 73 + maintainers = with lib.maintainers; [ abbradar ]; 74 + platforms = lib.platforms.linux; 75 75 }; 76 76 }
+3 -3
pkgs/by-name/du/dum/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-CpVci0nw/6Y6uyQX6iRV9E7uXzdZ2fzYIelYxsc+tI0="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Npm scripts runner written in Rust"; 23 23 mainProgram = "dum"; 24 24 homepage = "https://github.com/egoist/dum"; 25 25 changelog = "https://github.com/egoist/dum/blob/v${version}/CHANGELOG.md"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ figsoda ]; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ figsoda ]; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/du/dump_syms/package.nix
··· 48 48 inherit firefox-esr-unwrapped firefox-unwrapped thunderbird-unwrapped; 49 49 }; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 changelog = "https://github.com/mozilla/dump_syms/blob/v${version}/CHANGELOG.md"; 53 53 description = "Command-line utility for parsing the debugging information the compiler provides in ELF or stand-alone PDB files"; 54 54 mainProgram = "dump_syms"; 55 - license = licenses.asl20; 55 + license = lib.licenses.asl20; 56 56 homepage = "https://github.com/mozilla/dump_syms/"; 57 - maintainers = with maintainers; [ hexa ]; 57 + maintainers = with lib.maintainers; [ hexa ]; 58 58 }; 59 59 }
+3 -3
pkgs/by-name/e1/e1s/package.nix
··· 19 19 20 20 vendorHash = "sha256-1lise/u40Q8W9STsuyrWIbhf2HY+SFCytUL1PTSWvfY="; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "Easily Manage AWS ECS Resources in Terminal 🐱"; 24 24 homepage = "https://github.com/keidarcy/e1s"; 25 25 changelog = "https://github.com/keidarcy/e1s/releases/tag/v${version}"; 26 - license = licenses.mit; 26 + license = lib.licenses.mit; 27 27 mainProgram = "e1s"; 28 - maintainers = with maintainers; [ 28 + maintainers = with lib.maintainers; [ 29 29 zelkourban 30 30 carlossless 31 31 ];
+4 -4
pkgs/by-name/e2/e2fsprogs/package.nix
··· 88 88 [ -e $out/success ] 89 89 ''; 90 90 }; 91 - meta = with lib; { 91 + meta = { 92 92 homepage = "https://e2fsprogs.sourceforge.net/"; 93 93 changelog = "https://e2fsprogs.sourceforge.net/e2fsprogs-release.html#${version}"; 94 94 description = "Tools for creating and checking ext2/ext3/ext4 filesystems"; 95 - license = with licenses; [ 95 + license = with lib.licenses; [ 96 96 gpl2Plus 97 97 lgpl2Plus # lib/ext2fs, lib/e2p 98 98 bsd3 # lib/uuid 99 99 mit # lib/et, lib/ss 100 100 ]; 101 - platforms = platforms.unix; 102 - maintainers = [ ]; 101 + platforms = lib.platforms.unix; 102 + maintainers = with lib.maintainers; [ ]; 103 103 }; 104 104 }
+3 -3
pkgs/by-name/ea/earlybird/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more"; 27 27 mainProgram = "earlybird"; 28 28 homepage = "https://github.com/americanexpress/earlybird"; 29 29 changelog = "https://github.com/americanexpress/earlybird/releases/tag/v${version}"; 30 - license = licenses.asl20; 31 - maintainers = [ ]; 30 + license = lib.licenses.asl20; 31 + maintainers = with lib.maintainers; [ ]; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/ea/earthly/package.nix
··· 58 58 }; 59 59 }; 60 60 61 - meta = with lib; { 61 + meta = { 62 62 description = "Build automation for the container era"; 63 63 homepage = "https://earthly.dev/"; 64 64 changelog = "https://github.com/earthly/earthly/releases/tag/v${version}"; 65 - license = licenses.mpl20; 66 - maintainers = with maintainers; [ 65 + license = lib.licenses.mpl20; 66 + maintainers = with lib.maintainers; [ 67 67 zoedsoupe 68 68 konradmalik 69 69 ];
+3 -3
pkgs/by-name/ea/easyeasm/package.nix
··· 43 43 }" 44 44 ''; 45 45 46 - meta = with lib; { 46 + meta = { 47 47 description = "Attack surface management tool"; 48 48 homepage = "https://github.com/g0ldencybersec/EasyEASM"; 49 49 changelog = "https://github.com/g0ldencybersec/EasyEASM/releases/tag/v${version}"; 50 - license = licenses.mit; 51 - maintainers = with maintainers; [ fab ]; 50 + license = lib.licenses.mit; 51 + maintainers = with lib.maintainers; [ fab ]; 52 52 mainProgram = "easyeasm"; 53 53 }; 54 54 }
+4 -4
pkgs/by-name/ed/eduvpn-client/package.nix
··· 51 51 pytestCheckHook 52 52 ]; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 changelog = "https://codeberg.org/eduVPN/linux-app/raw/tag/${version}/CHANGES.md"; 56 56 description = "Linux client for eduVPN"; 57 57 homepage = "https://codeberg.org/eduVPN/linux-app"; 58 - license = licenses.gpl3Plus; 58 + license = lib.licenses.gpl3Plus; 59 59 mainProgram = "eduvpn-gui"; 60 - maintainers = with maintainers; [ 60 + maintainers = with lib.maintainers; [ 61 61 benneti 62 62 jwijenbergh 63 63 ]; 64 - platforms = platforms.linux; 64 + platforms = lib.platforms.linux; 65 65 }; 66 66 }
+3 -3
pkgs/by-name/em/emmet-ls/package.nix
··· 27 27 }) 28 28 ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Emmet support based on LSP"; 32 32 homepage = "https://github.com/aca/emmet-ls"; 33 33 changelog = "https://github.com/aca/emmet-ls/releases/tag/${version}"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ figsoda ]; 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ figsoda ]; 36 36 mainProgram = "emmet-ls"; 37 37 }; 38 38 }
+4 -4
pkgs/by-name/eo/eog/package.nix
··· 122 122 }; 123 123 }; 124 124 125 - meta = with lib; { 125 + meta = { 126 126 description = "GNOME image viewer"; 127 127 homepage = "https://gitlab.gnome.org/GNOME/eog"; 128 128 changelog = "https://gitlab.gnome.org/GNOME/eog/-/blob/${version}/NEWS?ref_type=tags"; 129 - license = licenses.gpl2Plus; 130 - teams = [ teams.gnome ]; 131 - platforms = platforms.unix; 129 + license = lib.licenses.gpl2Plus; 130 + teams = [ lib.teams.gnome ]; 131 + platforms = lib.platforms.unix; 132 132 mainProgram = "eog"; 133 133 }; 134 134 }
+3 -3
pkgs/by-name/ep/epick/package.nix
··· 50 50 patchelf $out/bin/epick --add-rpath ${lib.makeLibraryPath [ libGL ]} 51 51 ''; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Simple color picker that lets the user create harmonic palettes with ease"; 55 55 homepage = "https://github.com/vv9k/epick"; 56 56 changelog = "https://github.com/vv9k/epick/blob/${version}/CHANGELOG.md"; 57 - license = licenses.gpl3Only; 58 - maintainers = with maintainers; [ figsoda ]; 57 + license = lib.licenses.gpl3Only; 58 + maintainers = with lib.maintainers; [ figsoda ]; 59 59 mainProgram = "epick"; 60 60 }; 61 61 }
+2 -2
pkgs/by-name/er/er-patcher/package.nix
··· 26 26 patchShebangs $out/bin/er-patcher 27 27 ''; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 homepage = "https://github.com/gurrgur/er-patcher"; 31 31 changelog = "https://github.com/gurrgur/er-patcher/releases/tag/v${version}"; 32 32 description = "Enhancement patches for Elden Ring adding ultrawide support, custom frame rate limits and more"; ··· 35 35 This tool is based on patching the game executable through hex-edits. However it is done in a safe and non-destructive way, 36 36 that ensures the patched executable is never run with EAC enabled (unless explicity told to do so). Use at your own risk! 37 37 ''; 38 - license = licenses.mit; 38 + license = lib.licenses.mit; 39 39 maintainers = [ lib.maintainers.sigmasquadron ]; 40 40 mainProgram = "er-patcher"; 41 41 };
+5 -5
pkgs/by-name/er/erofs-utils/package.nix
··· 59 59 ++ lib.optional fuseSupport "--enable-fuse" 60 60 ++ lib.optional selinuxSupport "--with-selinux"; 61 61 62 - meta = with lib; { 62 + meta = { 63 63 homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/about/"; 64 64 description = "Userspace utilities for linux-erofs file system"; 65 - changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v${version}"; 66 - license = with licenses; [ gpl2Plus ]; 67 - maintainers = with maintainers; [ 65 + changelog = "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/tree/ChangeLog?h=v${finalAttrs.version}"; 66 + license = with lib.licenses; [ gpl2Plus ]; 67 + maintainers = with lib.maintainers; [ 68 68 ehmry 69 69 nikstur 70 70 jmbaur 71 71 ]; 72 - platforms = platforms.unix; 72 + platforms = lib.platforms.unix; 73 73 }; 74 74 })
+3 -3
pkgs/by-name/er/erosmb/package.nix
··· 39 39 runHook postInstallCheck 40 40 ''; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 description = "SMB network scanner"; 44 44 homepage = "https://github.com/viktor02/EroSmb"; 45 45 changelog = "https://github.com/viktor02/EroSmb/releases/tag/v${version}"; 46 - license = with licenses; [ mit ]; 47 - maintainers = with maintainers; [ fab ]; 46 + license = with lib.licenses; [ mit ]; 47 + maintainers = with lib.maintainers; [ fab ]; 48 48 mainProgram = "erosmb"; 49 49 }; 50 50 }
+3 -3
pkgs/by-name/et/etebase-server/package.nix
··· 59 59 nixosTest = nixosTests.etebase-server; 60 60 }; 61 61 62 - meta = with lib; { 62 + meta = { 63 63 homepage = "https://github.com/etesync/server"; 64 64 description = "Etebase (EteSync 2.0) server so you can run your own"; 65 65 mainProgram = "etebase-server"; 66 66 changelog = "https://github.com/etesync/server/blob/${version}/ChangeLog.md"; 67 - license = licenses.agpl3Only; 68 - maintainers = with maintainers; [ 67 + license = lib.licenses.agpl3Only; 68 + maintainers = with lib.maintainers; [ 69 69 felschr 70 70 phaer 71 71 ];
+4 -4
pkgs/by-name/et/eternal-terminal/package.nix
··· 51 51 52 52 doCheck = true; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 description = "Remote shell that automatically reconnects without interrupting the session"; 56 56 homepage = "https://eternalterminal.dev/"; 57 57 changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}"; 58 - license = licenses.asl20; 59 - maintainers = with maintainers; [ 58 + license = lib.licenses.asl20; 59 + maintainers = with lib.maintainers; [ 60 60 dezgeg 61 61 jshort 62 62 ]; 63 - platforms = platforms.linux ++ platforms.darwin; 63 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 64 64 }; 65 65 }
+2 -2
pkgs/by-name/ev/evil-winrm/package.nix
··· 40 40 41 41 passthru.updateScript = bundlerUpdateScript "evil-winrm"; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "WinRM shell for hacking/pentesting"; 45 45 mainProgram = "evil-winrm"; 46 46 homepage = "https://github.com/Hackplayers/evil-winrm"; 47 47 changelog = "https://github.com/Hackplayers/evil-winrm/blob/v${version}/CHANGELOG.md"; 48 - license = licenses.lgpl3Plus; 48 + license = lib.licenses.lgpl3Plus; 49 49 }; 50 50 }
+4 -4
pkgs/by-name/ev/evolution-data-server/package.nix
··· 197 197 ]; 198 198 }; 199 199 200 - meta = with lib; { 200 + meta = { 201 201 description = "Unified backend for programs that work with contacts, tasks, and calendar information"; 202 202 homepage = "https://gitlab.gnome.org/GNOME/evolution-data-server"; 203 203 changelog = "https://gitlab.gnome.org/GNOME/evolution-data-server/-/blob/${version}/NEWS?ref_type=tags"; 204 - license = licenses.lgpl2Plus; 205 - teams = [ teams.gnome ]; 206 - platforms = platforms.linux; # requires libuuid 204 + license = lib.licenses.lgpl2Plus; 205 + teams = [ lib.teams.gnome ]; 206 + platforms = lib.platforms.linux; # requires libuuid 207 207 }; 208 208 }
+3 -3
pkgs/by-name/ev/evtx/package.nix
··· 23 23 rm tests/test_cli_interactive.rs 24 24 ''; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Parser for the Windows XML Event Log (EVTX) format"; 28 28 homepage = "https://github.com/omerbenamram/evtx"; 29 29 changelog = "https://github.com/omerbenamram/evtx/blob/v${version}/CHANGELOG.md"; 30 - license = with licenses; [ 30 + license = with lib.licenses; [ 31 31 asl20 # or 32 32 mit 33 33 ]; 34 - maintainers = with maintainers; [ fab ]; 34 + maintainers = with lib.maintainers; [ fab ]; 35 35 mainProgram = "evtx_dump"; 36 36 }; 37 37 }
+1 -1
pkgs/by-name/ex/exegol/package.nix
··· 37 37 38 38 pythonImportsCheck = [ "exegol" ]; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "Fully featured and community-driven hacking environment"; 42 42 longDescription = '' 43 43 Exegol is a community-driven hacking environment, powerful and yet
+3 -3
pkgs/by-name/ex/exiflooter/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Finds geolocation on all image urls and directories"; 27 27 homepage = "https://github.com/aydinnyunus/exiflooter"; 28 28 changelog = "https://github.com/aydinnyunus/exifLooter/releases/tag/v${version}"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ octodi ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ octodi ]; 31 31 mainProgram = "exiflooter"; 32 32 }; 33 33 }
+5 -5
pkgs/by-name/ex/exim/package.nix
··· 192 192 runHook postInstall 193 193 ''; 194 194 195 - meta = with lib; { 195 + meta = { 196 196 homepage = "https://exim.org/"; 197 197 description = "Mail transfer agent (MTA)"; 198 - license = with licenses; [ 198 + license = with lib.licenses; [ 199 199 gpl2Plus 200 200 bsd3 201 201 ]; 202 202 mainProgram = "exim"; 203 - platforms = platforms.linux; 204 - maintainers = with maintainers; [ tv ]; 205 - teams = [ teams.helsinki-systems ]; 203 + platforms = lib.platforms.linux; 204 + maintainers = with lib.maintainers; [ tv ]; 205 + teams = [ lib.teams.helsinki-systems ]; 206 206 changelog = "https://github.com/Exim/exim/blob/exim-${version}/doc/doc-txt/ChangeLog"; 207 207 }; 208 208 }
+4 -4
pkgs/by-name/ex/extra-container/package.nix
··· 35 35 " $out/bin/extra-container 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Run declarative containers without full system rebuilds"; 40 40 homepage = "https://github.com/erikarvstedt/extra-container"; 41 41 changelog = "https://github.com/erikarvstedt/extra-container/blob/${version}/CHANGELOG.md"; 42 - license = licenses.mit; 43 - platforms = platforms.linux; 44 - maintainers = [ maintainers.erikarvstedt ]; 42 + license = lib.licenses.mit; 43 + platforms = lib.platforms.linux; 44 + maintainers = [ lib.maintainers.erikarvstedt ]; 45 45 mainProgram = "extra-container"; 46 46 }; 47 47 }
+4 -4
pkgs/by-name/f3/f3d/package.nix
··· 98 98 "-DF3D_PLUGIN_BUILD_USD=ON" 99 99 ]; 100 100 101 - meta = with lib; { 101 + meta = { 102 102 description = "Fast and minimalist 3D viewer using VTK"; 103 103 homepage = "https://f3d-app.github.io/f3d"; 104 104 changelog = "https://github.com/f3d-app/f3d/releases/tag/v${version}"; 105 - license = licenses.bsd3; 106 - maintainers = with maintainers; [ 105 + license = lib.licenses.bsd3; 106 + maintainers = with lib.maintainers; [ 107 107 bcdarwin 108 108 pbsds 109 109 ]; 110 - platforms = with platforms; unix; 110 + platforms = with lib.platforms; unix; 111 111 mainProgram = "f3d"; 112 112 }; 113 113 }
+3 -3
pkgs/by-name/fd/fd/package.nix
··· 50 50 package = fd; 51 51 }; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Simple, fast and user-friendly alternative to find"; 55 55 longDescription = '' 56 56 `fd` is a simple, fast and user-friendly alternative to `find`. ··· 60 60 ''; 61 61 homepage = "https://github.com/sharkdp/fd"; 62 62 changelog = "https://github.com/sharkdp/fd/blob/v${version}/CHANGELOG.md"; 63 - license = with licenses; [ 63 + license = with lib.licenses; [ 64 64 asl20 # or 65 65 mit 66 66 ]; 67 - maintainers = with maintainers; [ 67 + maintainers = with lib.maintainers; [ 68 68 dywedir 69 69 figsoda 70 70 globin
+3 -3
pkgs/by-name/ff/ffuf/package.nix
··· 32 32 "-s" 33 33 ]; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Tool for web fuzzing"; 37 37 mainProgram = "ffuf"; 38 38 longDescription = '' ··· 42 42 ''; 43 43 homepage = "https://github.com/ffuf/ffuf"; 44 44 changelog = "https://github.com/ffuf/ffuf/releases/tag/v${version}"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ fab ]; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ fab ]; 47 47 }; 48 48 }
+3 -3
pkgs/by-name/fn/fnlfmt/package.nix
··· 36 36 runHook postInstallCheck 37 37 ''; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "Formatter for Fennel"; 41 41 homepage = src.meta.homepage; 42 42 changelog = "${src.meta.homepage}/tree/${version}/changelog.md"; 43 - license = licenses.mit; 43 + license = lib.licenses.mit; 44 44 platforms = lua.meta.platforms; 45 - maintainers = with maintainers; [ chiroptical ]; 45 + maintainers = with lib.maintainers; [ chiroptical ]; 46 46 mainProgram = "fnlfmt"; 47 47 }; 48 48 }
+4 -4
pkgs/by-name/fp/fping/package.nix
··· 18 18 "--enable-ipv4" 19 19 ]; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Send ICMP echo probes to network hosts"; 23 23 homepage = "http://fping.org/"; 24 24 changelog = "https://github.com/schweikert/fping/releases/tag/v${version}"; 25 - license = licenses.bsd0; 25 + license = lib.licenses.bsd0; 26 26 mainProgram = "fping"; 27 - maintainers = with maintainers; [ fab ]; 28 - platforms = platforms.all; 27 + maintainers = with lib.maintainers; [ fab ]; 28 + platforms = lib.platforms.all; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/fs/fscrypt-experimental/package.nix
··· 45 45 runHook postInstall 46 46 ''; 47 47 48 - meta = with lib; { 48 + meta = { 49 49 description = "High-level tool for the management of Linux filesystem encryption"; 50 50 mainProgram = "fscrypt"; 51 51 longDescription = '' ··· 55 55 ''; 56 56 inherit (src.meta) homepage; 57 57 changelog = "https://github.com/google/fscrypt/releases/tag/v${version}"; 58 - license = licenses.asl20; 59 - platforms = platforms.linux; 60 - maintainers = with maintainers; [ primeos ]; 58 + license = lib.licenses.asl20; 59 + platforms = lib.platforms.linux; 60 + maintainers = with lib.maintainers; [ primeos ]; 61 61 }; 62 62 }
+4 -4
pkgs/by-name/fs/fsmon/package.nix
··· 19 19 make install PREFIX=$out 20 20 ''; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "FileSystem Monitor utility"; 24 24 homepage = "https://github.com/nowsecure/fsmon"; 25 25 changelog = "https://github.com/nowsecure/fsmon/releases/tag/${version}"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ dezgeg ]; 28 - platforms = platforms.linux; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ dezgeg ]; 28 + platforms = lib.platforms.linux; 29 29 mainProgram = "fsmon"; 30 30 }; 31 31 }
+4 -4
pkgs/by-name/fs/fstar/package.nix
··· 107 107 z3 = fstarZ3; 108 108 }; 109 109 110 - meta = with lib; { 110 + meta = { 111 111 description = "ML-like functional programming language aimed at program verification"; 112 112 homepage = "https://www.fstar-lang.org"; 113 113 changelog = "https://github.com/FStarLang/FStar/raw/v${version}/CHANGES.md"; 114 - license = licenses.asl20; 115 - maintainers = with maintainers; [ 114 + license = lib.licenses.asl20; 115 + maintainers = with lib.maintainers; [ 116 116 numinit 117 117 ]; 118 118 mainProgram = "fstar.exe"; 119 - platforms = with platforms; darwin ++ linux; 119 + platforms = with lib.platforms; darwin ++ linux; 120 120 }; 121 121 }
+4 -4
pkgs/by-name/fu/fujprog/package.nix
··· 29 29 libusb-compat-0_1 30 30 ]; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "JTAG programmer for the ULX3S and ULX2S open hardware FPGA development boards"; 34 34 mainProgram = "fujprog"; 35 35 homepage = "https://github.com/kost/fujprog"; 36 - license = licenses.bsd2; 37 - maintainers = with maintainers; [ trepetti ]; 38 - platforms = platforms.all; 36 + license = lib.licenses.bsd2; 37 + maintainers = with lib.maintainers; [ trepetti ]; 38 + platforms = lib.platforms.all; 39 39 changelog = "https://github.com/kost/fujprog/releases/tag/v${version}"; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/fu/fulcio/package.nix
··· 82 82 version = "v${version}"; 83 83 }; 84 84 85 - meta = with lib; { 85 + meta = { 86 86 homepage = "https://github.com/sigstore/fulcio"; 87 87 changelog = "https://github.com/sigstore/fulcio/releases/tag/v${version}"; 88 88 description = "Root-CA for code signing certs - issuing certificates based on an OIDC email address"; ··· 97 97 different delegation models, and to deploy and run Fulcio as a 98 98 disconnected instance. 99 99 ''; 100 - license = licenses.asl20; 101 - maintainers = with maintainers; [ 100 + license = lib.licenses.asl20; 101 + maintainers = with lib.maintainers; [ 102 102 lesuisse 103 103 jk 104 104 ];
+3 -3
pkgs/by-name/gd/gdu/package.nix
··· 47 47 48 48 passthru.tests.version = testers.testVersion { package = gdu; }; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Disk usage analyzer with console interface"; 52 52 longDescription = '' 53 53 Gdu is intended primarily for SSD disks where it can fully ··· 56 56 ''; 57 57 homepage = "https://github.com/dundee/gdu"; 58 58 changelog = "https://github.com/dundee/gdu/releases/tag/v${version}"; 59 - license = with licenses; [ mit ]; 60 - maintainers = with maintainers; [ 59 + license = with lib.licenses; [ mit ]; 60 + maintainers = with lib.maintainers; [ 61 61 fab 62 62 zowoq 63 63 ];
+4 -4
pkgs/by-name/gf/gfxreconstruct/package.nix
··· 66 66 --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]} 67 67 ''; 68 68 69 - meta = with lib; { 69 + meta = { 70 70 description = "Graphics API Capture and Replay Tools"; 71 71 homepage = "https://github.com/LunarG/gfxreconstruct/"; 72 72 changelog = "https://github.com/LunarG/gfxreconstruct/releases/tag/v${version}"; 73 - license = licenses.mit; 74 - maintainers = with maintainers; [ Flakebi ]; 75 - platforms = platforms.linux; 73 + license = lib.licenses.mit; 74 + maintainers = with lib.maintainers; [ Flakebi ]; 75 + platforms = lib.platforms.linux; 76 76 }; 77 77 }
+2 -2
pkgs/by-name/gg/gg-scm/package.nix
··· 64 64 --zsh misc/_gg.zsh 65 65 ''; 66 66 67 - meta = with lib; { 67 + meta = { 68 68 mainProgram = "gg"; 69 69 description = "Git with less typing"; 70 70 longDescription = '' ··· 74 74 ''; 75 75 homepage = "https://gg-scm.io/"; 76 76 changelog = "https://github.com/gg-scm/gg/blob/v${version}/CHANGELOG.md"; 77 - license = licenses.asl20; 77 + license = lib.licenses.asl20; 78 78 }; 79 79 }
+4 -4
pkgs/by-name/gn/gnome-backgrounds/package.nix
··· 32 32 updateScript = gnome.updateScript { packageName = "gnome-backgrounds"; }; 33 33 }; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Default wallpaper set for GNOME"; 37 37 homepage = "https://gitlab.gnome.org/GNOME/gnome-backgrounds"; 38 38 changelog = "https://gitlab.gnome.org/GNOME/gnome-backgrounds/-/blob/${version}/NEWS?ref_type=tags"; 39 - license = licenses.cc-by-sa-30; 40 - platforms = platforms.unix; 41 - teams = [ teams.gnome ]; 39 + license = lib.licenses.cc-by-sa-30; 40 + platforms = lib.platforms.unix; 41 + teams = [ lib.teams.gnome ]; 42 42 }; 43 43 }
+5 -5
pkgs/by-name/gn/gnome-keyring/package.nix
··· 117 117 }; 118 118 }; 119 119 120 - meta = with lib; { 120 + meta = { 121 121 description = "Collection of components in GNOME that store secrets, passwords, keys, certificates and make them available to applications"; 122 122 homepage = "https://gitlab.gnome.org/GNOME/gnome-keyring"; 123 123 changelog = "https://gitlab.gnome.org/GNOME/gnome-keyring/-/blob/${version}/NEWS?ref_type=tags"; 124 124 license = [ 125 125 # Most of the code (some is 2Plus) 126 - licenses.lgpl21Plus 126 + lib.licenses.lgpl21Plus 127 127 # Some stragglers 128 - licenses.gpl2Plus 128 + lib.licenses.gpl2Plus 129 129 ]; 130 - teams = [ teams.gnome ]; 131 - platforms = platforms.linux; 130 + teams = [ lib.teams.gnome ]; 131 + platforms = lib.platforms.linux; 132 132 }; 133 133 }
+4 -4
pkgs/by-name/gn/gnome-klotski/package.nix
··· 63 63 updateScript = gnome.updateScript { packageName = "gnome-klotski"; }; 64 64 }; 65 65 66 - meta = with lib; { 66 + meta = { 67 67 homepage = "https://gitlab.gnome.org/GNOME/gnome-klotski"; 68 68 changelog = "https://gitlab.gnome.org/GNOME/gnome-klotski/-/blob/${version}/NEWS?ref_type=tags"; 69 69 description = "Slide blocks to solve the puzzle"; 70 70 mainProgram = "gnome-klotski"; 71 - teams = [ teams.gnome ]; 72 - license = licenses.gpl2; 73 - platforms = platforms.unix; 71 + teams = [ lib.teams.gnome ]; 72 + license = lib.licenses.gpl2; 73 + platforms = lib.platforms.unix; 74 74 }; 75 75 }
+4 -4
pkgs/by-name/gn/gnome-remote-desktop/package.nix
··· 89 89 updateScript = gnome.updateScript { packageName = "gnome-remote-desktop"; }; 90 90 }; 91 91 92 - meta = with lib; { 92 + meta = { 93 93 homepage = "https://gitlab.gnome.org/GNOME/gnome-remote-desktop"; 94 94 changelog = "https://gitlab.gnome.org/GNOME/gnome-remote-desktop/-/blob/${version}/NEWS?ref_type=tags"; 95 95 description = "GNOME Remote Desktop server"; 96 96 mainProgram = "grdctl"; 97 - teams = [ teams.gnome ]; 98 - license = licenses.gpl2Plus; 99 - platforms = platforms.linux; 97 + teams = [ lib.teams.gnome ]; 98 + license = lib.licenses.gpl2Plus; 99 + platforms = lib.platforms.linux; 100 100 }; 101 101 }
+4 -4
pkgs/by-name/gn/gnome-sound-recorder/package.nix
··· 65 65 updateScript = gnome.updateScript { packageName = "gnome-sound-recorder"; }; 66 66 }; 67 67 68 - meta = with lib; { 68 + meta = { 69 69 description = "Simple and modern sound recorder"; 70 70 mainProgram = "gnome-sound-recorder"; 71 71 homepage = "https://gitlab.gnome.org/World/vocalis"; 72 72 changelog = "https://gitlab.gnome.org/World/vocalis/-/blob/${version}/NEWS?ref_type=tags"; 73 - license = licenses.gpl2Plus; 74 - teams = [ teams.gnome ]; 75 - platforms = platforms.linux; 73 + license = lib.licenses.gpl2Plus; 74 + teams = [ lib.teams.gnome ]; 75 + platforms = lib.platforms.linux; 76 76 }; 77 77 }
+4 -4
pkgs/by-name/gn/gnome-sudoku/package.nix
··· 56 56 updateScript = gnome.updateScript { packageName = "gnome-sudoku"; }; 57 57 }; 58 58 59 - meta = with lib; { 59 + meta = { 60 60 homepage = "https://gitlab.gnome.org/GNOME/gnome-sudoku"; 61 61 changelog = "https://gitlab.gnome.org/GNOME/gnome-sudoku/-/blob/${version}/NEWS?ref_type=tags"; 62 62 description = "Test your logic skills in this number grid puzzle"; 63 63 mainProgram = "gnome-sudoku"; 64 - teams = [ teams.gnome ]; 65 - license = licenses.gpl3Plus; 66 - platforms = platforms.unix; 64 + teams = [ lib.teams.gnome ]; 65 + license = lib.licenses.gpl3Plus; 66 + platforms = lib.platforms.unix; 67 67 }; 68 68 }
+3 -3
pkgs/by-name/gn/gnostic/package.nix
··· 20 20 # some tests are broken and others require network access 21 21 doCheck = false; 22 22 23 - meta = with lib; { 23 + meta = { 24 24 homepage = "https://github.com/google/gnostic"; 25 25 description = "Compiler for APIs described by the OpenAPI Specification with plugins for code generation and other API support tasks"; 26 26 changelog = "https://github.com/google/gnostic/releases/tag/v${version}"; 27 - license = licenses.asl20; 28 - maintainers = with maintainers; [ urandom ]; 27 + license = lib.licenses.asl20; 28 + maintainers = with lib.maintainers; [ urandom ]; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/gn/gnuastro/package.nix
··· 39 39 40 40 enableParallelBuilding = true; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 description = "GNU astronomy utilities and library"; 44 44 homepage = "https://www.gnu.org/software/gnuastro/"; 45 45 changelog = "https://git.savannah.gnu.org/cgit/gnuastro.git/plain/NEWS?id=gnuastro_v${version}"; 46 - license = licenses.gpl3Plus; 47 - platforms = platforms.unix; 48 - maintainers = with maintainers; [ sikmir ]; 46 + license = lib.licenses.gpl3Plus; 47 + platforms = lib.platforms.unix; 48 + maintainers = with lib.maintainers; [ sikmir ]; 49 49 }; 50 50 }
+5 -5
pkgs/by-name/gn/gnucap/modelgen-verilog.nix
··· 35 35 installManPage man/*.* 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "gnucap modelgen to preprocess, parse and dump vams files"; 40 40 homepage = "http://www.gnucap.org/"; 41 - changelog = "https://git.savannah.gnu.org/cgit/gnucap.git/plain/NEWS?h=v${version}"; 41 + changelog = "https://git.savannah.gnu.org/cgit/gnucap.git/plain/NEWS?h=v${finalAttrs.version}"; 42 42 mainProgram = "gnucap-mg-vams"; 43 - license = licenses.gpl3Plus; 44 - platforms = platforms.all; 45 - maintainers = [ maintainers.raboof ]; 43 + license = lib.licenses.gpl3Plus; 44 + platforms = lib.platforms.all; 45 + maintainers = [ lib.maintainers.raboof ]; 46 46 }; 47 47 })
+4 -4
pkgs/by-name/gn/gnupg-pkcs11-scd/package.nix
··· 35 35 "--with-libgcrypt-prefix=${libgcrypt.dev}" 36 36 ]; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 changelog = "https://github.com/alonbl/gnupg-pkcs11-scd/blob/gnupg-pkcs11-scd-${version}/ChangeLog"; 40 40 description = "Smart-card daemon to enable the use of PKCS#11 tokens with GnuPG"; 41 41 mainProgram = "gnupg-pkcs11-scd"; ··· 44 44 daemon to enable the use of PKCS#11 tokens with GnuPG. 45 45 ''; 46 46 homepage = "https://gnupg-pkcs11.sourceforge.net/"; 47 - license = licenses.bsd3; 48 - maintainers = with maintainers; [ 47 + license = lib.licenses.bsd3; 48 + maintainers = with lib.maintainers; [ 49 49 matthiasbeyer 50 50 philandstuff 51 51 ]; 52 - platforms = platforms.unix; 52 + platforms = lib.platforms.unix; 53 53 }; 54 54 }
+3 -3
pkgs/by-name/gp/gpa/package.nix
··· 33 33 34 34 env.NIX_CFLAGS_COMPILE = "-Wno-error=implicit-function-declaration"; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 changelog = "https://dev.gnupg.org/source/gpa/browse/master/NEWS;gpa-${version}?view=raw"; 38 38 description = "Graphical user interface for the GnuPG"; 39 39 homepage = "https://www.gnupg.org/related_software/gpa/"; 40 - license = licenses.gpl3Plus; 41 - platforms = platforms.unix; 40 + license = lib.licenses.gpl3Plus; 41 + platforms = lib.platforms.unix; 42 42 mainProgram = "gpa"; 43 43 }; 44 44 }
+4 -4
pkgs/by-name/gp/gpsd/package.nix
··· 131 131 wrapPythonProgramsIn $out/bin "$out $pythonPath" 132 132 ''; 133 133 134 - meta = with lib; { 134 + meta = { 135 135 description = "GPS service daemon"; 136 136 longDescription = '' 137 137 gpsd is a service daemon that monitors one or more GPSes or AIS ··· 153 153 ''; 154 154 homepage = "https://gpsd.gitlab.io/gpsd/index.html"; 155 155 changelog = "https://gitlab.com/gpsd/gpsd/-/blob/release-${version}/NEWS"; 156 - license = licenses.bsd2; 157 - platforms = platforms.unix; 158 - maintainers = with maintainers; [ 156 + license = lib.licenses.bsd2; 157 + platforms = lib.platforms.unix; 158 + maintainers = with lib.maintainers; [ 159 159 bjornfor 160 160 rasendubi 161 161 ];
+3 -3
pkgs/by-name/gp/gptscript/package.nix
··· 25 25 # Requires network access 26 26 doCheck = false; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 homepage = "https://github.com/gptscript-ai/gptscript"; 30 30 changelog = "https://github.com/gptscript-ai/gptscript/releases/tag/v${version}"; 31 31 description = "Build AI assistants that interact with your systems"; 32 - license = with licenses; [ asl20 ]; 33 - maintainers = with maintainers; [ jamiemagee ]; 32 + license = with lib.licenses; [ asl20 ]; 33 + maintainers = with lib.maintainers; [ jamiemagee ]; 34 34 mainProgram = "gptscript"; 35 35 }; 36 36 }
+3 -3
pkgs/by-name/gt/gtfocli/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "GTFO Command Line Interface for search binaries commands to bypass local security restrictions"; 27 27 homepage = "https://github.com/cmd-tools/gtfocli"; 28 28 changelog = "https://github.com/cmd-tools/gtfocli/releases/tag/${version}"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "gtfocli"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/gt/gtrash/package.nix
··· 40 40 --zsh <($out/bin/gtrash completion zsh) 41 41 ''; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Trash CLI manager written in Go"; 45 45 homepage = "https://github.com/umlx5h/gtrash"; 46 46 changelog = "https://github.com/umlx5h/gtrash/releases/tag/v${version}"; 47 - license = licenses.mit; 48 - maintainers = with maintainers; [ umlx5h ]; 47 + license = lib.licenses.mit; 48 + maintainers = with lib.maintainers; [ umlx5h ]; 49 49 mainProgram = "gtrash"; 50 50 }; 51 51 }
+4 -4
pkgs/by-name/gv/gvm-libs/package.nix
··· 68 68 # causes redefinition of _FORTIFY_SOURCE 69 69 hardeningDisable = [ "fortify3" ]; 70 70 71 - meta = with lib; { 71 + meta = { 72 72 description = "Libraries module for the Greenbone Vulnerability Management Solution"; 73 73 homepage = "https://github.com/greenbone/gvm-libs"; 74 74 changelog = "https://github.com/greenbone/gvm-libs/releases/tag/v${version}"; 75 - license = with licenses; [ gpl2Plus ]; 76 - maintainers = with maintainers; [ fab ]; 77 - platforms = platforms.linux; 75 + license = with lib.licenses; [ gpl2Plus ]; 76 + maintainers = with lib.maintainers; [ fab ]; 77 + platforms = lib.platforms.linux; 78 78 }; 79 79 }
+4 -4
pkgs/by-name/gw/gwc/package.nix
··· 45 45 46 46 enableParallelBuilding = false; # Fails to generate machine.h in time. 47 47 48 - meta = with lib; { 48 + meta = { 49 49 description = "GUI application for removing noise (hiss, pops and clicks) from audio files"; 50 50 homepage = "https://github.com/AlisterH/gwc/"; 51 51 changelog = "https://github.com/AlisterH/gwc/blob/${version}/Changelog"; 52 - license = licenses.gpl2Plus; 53 - maintainers = with maintainers; [ magnetophon ]; 54 - platforms = platforms.linux; 52 + license = lib.licenses.gpl2Plus; 53 + maintainers = with lib.maintainers; [ magnetophon ]; 54 + platforms = lib.platforms.linux; 55 55 }; 56 56 }
+3 -3
pkgs/by-name/h8/h8mail/package.nix
··· 27 27 28 28 pythonImportsCheck = [ "h8mail" ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Email OSINT & Password breach hunting tool"; 32 32 homepage = "https://github.com/khast3x/h8mail"; 33 33 changelog = "https://github.com/khast3x/h8mail/releases/tag/${version}"; 34 - license = licenses.bsd3; 35 - maintainers = with maintainers; [ octodi ]; 34 + license = lib.licenses.bsd3; 35 + maintainers = with lib.maintainers; [ octodi ]; 36 36 mainProgram = "h8mail"; 37 37 }; 38 38 }
+3 -3
pkgs/by-name/hc/hck/package.nix
··· 21 21 22 22 nativeBuildInputs = [ cmake ]; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 description = "Close to drop in replacement for cut that can use a regex delimiter instead of a fixed string"; 26 26 homepage = "https://github.com/sstadick/hck"; 27 27 changelog = "https://github.com/sstadick/hck/blob/v${version}/CHANGELOG.md"; 28 - license = with licenses; [ 28 + license = with lib.licenses; [ 29 29 mit # or 30 30 unlicense 31 31 ]; 32 - maintainers = with maintainers; [ 32 + maintainers = with lib.maintainers; [ 33 33 figsoda 34 34 gepbird 35 35 ];
+3 -3
pkgs/by-name/hc/hcloud/package.nix
··· 35 35 done 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 changelog = "https://github.com/hetznercloud/cli/releases/tag/v${version}"; 40 40 description = "Command-line interface for Hetzner Cloud, a provider for cloud virtual private servers"; 41 41 mainProgram = "hcloud"; 42 42 homepage = "https://github.com/hetznercloud/cli"; 43 - license = licenses.mit; 44 - maintainers = with maintainers; [ 43 + license = lib.licenses.mit; 44 + maintainers = with lib.maintainers; [ 45 45 zauberpony 46 46 techknowlogick 47 47 ];
+4 -4
pkgs/by-name/hd/hdrop/package.nix
··· 47 47 }" 48 48 ''; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Emulate 'tdrop' in Hyprland (run, show and hide specific programs per keybind)"; 52 52 homepage = "https://github.com/Schweber/hdrop"; 53 53 changelog = "https://github.com/Schweber/hdrop/releases/tag/v${version}"; 54 - license = licenses.agpl3Only; 55 - platforms = platforms.linux; 56 - maintainers = with maintainers; [ Schweber ]; 54 + license = lib.licenses.agpl3Only; 55 + platforms = lib.platforms.linux; 56 + maintainers = with lib.maintainers; [ Schweber ]; 57 57 mainProgram = "hdrop"; 58 58 }; 59 59 }
+3 -3
pkgs/by-name/hf/hfinger/package.nix
··· 38 38 "hfinger" 39 39 ]; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Fingerprinting tool for HTTP requests"; 43 43 mainProgram = "hfinger"; 44 44 homepage = "https://github.com/CERT-Polska/hfinger"; 45 45 changelog = "https://github.com/CERT-Polska/hfinger/releases/tag/v${version}"; 46 - license = with licenses; [ gpl3Only ]; 47 - maintainers = with maintainers; [ fab ]; 46 + license = with lib.licenses; [ gpl3Only ]; 47 + maintainers = with lib.maintainers; [ fab ]; 48 48 }; 49 49 }
+3 -3
pkgs/by-name/hj/hjson-go/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Utility to convert JSON to and from HJSON"; 27 27 homepage = "https://hjson.github.io/"; 28 28 changelog = "https://github.com/hjson/hjson-go/releases/tag/v${version}"; 29 - maintainers = with maintainers; [ ehmry ]; 30 - license = licenses.mit; 29 + maintainers = with lib.maintainers; [ ehmry ]; 30 + license = lib.licenses.mit; 31 31 mainProgram = "hjson-cli"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/hm/hmm/package.nix
··· 27 27 # https://github.com/NixOS/nixpkgs/pull/310673 28 28 cargoPatches = [ ./rustc-serialize-fix.patch ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Small command-line note-taking app"; 32 32 homepage = "https://github.com/samwho/hmm"; 33 33 changelog = "https://github.com/samwho/hmm/releases/tag/v${version}"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ figsoda ]; 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ figsoda ]; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/hs/hstsparser/package.nix
··· 28 28 "hstsparser" 29 29 ]; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Tool to parse Firefox and Chrome HSTS databases into forensic artifacts"; 33 33 mainProgram = "hstsparser"; 34 34 homepage = "https://github.com/thebeanogamer/hstsparser"; 35 35 changelog = "https://github.com/thebeanogamer/hstsparser/releases/tag/${version}"; 36 - license = licenses.mit; 37 - maintainers = with maintainers; [ fab ]; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ fab ]; 38 38 }; 39 39 }
+3 -3
pkgs/by-name/ht/html5validator/package.nix
··· 34 34 export PATH="$PATH:$out/bin"; 35 35 ''; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Command line tool that tests files for HTML5 validity"; 39 39 mainProgram = "html5validator"; 40 40 homepage = "https://github.com/svenkreiss/html5validator"; 41 41 changelog = "https://github.com/svenkreiss/html5validator/releases/tag/v${version}"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ phunehehe ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ phunehehe ]; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/ht/htmldoc/package.nix
··· 40 40 command = "htmldoc --version"; 41 41 }; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Converts HTML files to PostScript and PDF"; 45 45 homepage = "https://michaelrsweet.github.io/htmldoc"; 46 46 changelog = "https://github.com/michaelrsweet/htmldoc/releases/tag/v${version}"; 47 - license = licenses.gpl2Only; 48 - maintainers = [ ]; 49 - platforms = platforms.unix; 47 + license = lib.licenses.gpl2Only; 48 + maintainers = with lib.maintainers; [ ]; 49 + platforms = lib.platforms.unix; 50 50 51 51 longDescription = '' 52 52 HTMLDOC is a program that reads HTML source files or web pages and
+4 -4
pkgs/by-name/ht/htop/package.nix
··· 71 71 ${optionalPatch systemdSupport "${systemd}/lib/libsystemd.so"} 72 72 ''; 73 73 74 - meta = with lib; { 74 + meta = { 75 75 description = "Interactive process viewer"; 76 76 homepage = "https://htop.dev"; 77 - license = licenses.gpl2Only; 78 - platforms = platforms.all; 79 - maintainers = with maintainers; [ 77 + license = lib.licenses.gpl2Only; 78 + platforms = lib.platforms.all; 79 + maintainers = with lib.maintainers; [ 80 80 rob 81 81 relrod 82 82 SuperSandro2000
+3 -3
pkgs/by-name/ht/httm/package.nix
··· 39 39 install -Dm644 README.md $out/share/doc/README.md 40 40 ''; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 description = "Interactive, file-level Time Machine-like tool for ZFS/btrfs"; 44 44 homepage = "https://github.com/kimono-koans/httm"; 45 45 changelog = "https://github.com/kimono-koans/httm/releases/tag/${version}"; 46 - license = licenses.mpl20; 47 - maintainers = with maintainers; [ wyndon ]; 46 + license = lib.licenses.mpl20; 47 + maintainers = with lib.maintainers; [ wyndon ]; 48 48 mainProgram = "httm"; 49 49 }; 50 50 }
+3 -3
pkgs/by-name/ht/httplz/package.nix
··· 44 44 --prefix PATH : "${openssl}/bin" 45 45 ''; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Basic http server for hosting a folder fast and simply"; 49 49 mainProgram = "httplz"; 50 50 homepage = "https://github.com/thecoshman/http"; 51 51 changelog = "https://github.com/thecoshman/http/releases/tag/v${version}"; 52 - license = licenses.mit; 53 - maintainers = with maintainers; [ figsoda ]; 52 + license = lib.licenses.mit; 53 + maintainers = with lib.maintainers; [ figsoda ]; 54 54 }; 55 55 }
+3 -3
pkgs/by-name/ht/httpx/package.nix
··· 34 34 35 35 versionCheckProgramArg = "-version"; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Fast and multi-purpose HTTP toolkit"; 39 39 longDescription = '' 40 40 httpx is a fast and multi-purpose HTTP toolkit allow to run multiple ··· 43 43 ''; 44 44 homepage = "https://github.com/projectdiscovery/httpx"; 45 45 changelog = "https://github.com/projectdiscovery/httpx/releases/tag/v${version}"; 46 - license = licenses.mit; 47 - maintainers = with maintainers; [ fab ]; 46 + license = lib.licenses.mit; 47 + maintainers = with lib.maintainers; [ fab ]; 48 48 mainProgram = "httpx"; 49 49 }; 50 50 }
+3 -3
pkgs/by-name/hu/hurl/package.nix
··· 52 52 --zsh completions/_hurlfmt 53 53 ''; 54 54 55 - meta = with lib; { 55 + meta = { 56 56 description = "Command line tool that performs HTTP requests defined in a simple plain text format"; 57 57 homepage = "https://hurl.dev/"; 58 58 changelog = "https://github.com/Orange-OpenSource/hurl/blob/${version}/CHANGELOG.md"; 59 - maintainers = with maintainers; [ 59 + maintainers = with lib.maintainers; [ 60 60 eonpatapon 61 61 figsoda 62 62 ]; 63 - license = licenses.asl20; 63 + license = lib.licenses.asl20; 64 64 mainProgram = "hurl"; 65 65 }; 66 66 }
+3 -3
pkgs/by-name/hu/husky/package.nix
··· 17 17 18 18 npmDepsHash = "sha256-u1dndTKvInobva+71yI2vPiwrW9vqzAJ2sDAqT9YJsg="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Git hooks made easy 🐶 woof!"; 22 22 mainProgram = "husky"; 23 23 homepage = "https://github.com/typicode/husky"; 24 24 changelog = "https://github.com/typicode/husky/releases/tag/v${version}"; 25 - license = licenses.mit; 26 - maintainers = with maintainers; [ dit7ya ]; 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ dit7ya ]; 27 27 }; 28 28 }
+3 -3
pkgs/by-name/ia/iam-policy-json-to-terraform/package.nix
··· 17 17 18 18 vendorHash = "sha256-6EtOMs+Vba39hOQ029dHpHCJ9ke35PZ/em9Xye3dmvg="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Small tool to convert an IAM Policy in JSON format into a Terraform aws_iam_policy_document"; 22 22 homepage = "https://github.com/flosell/iam-policy-json-to-terraform"; 23 23 changelog = "https://github.com/flosell/iam-policy-json-to-terraform/releases/tag/${version}"; 24 - license = licenses.asl20; 25 - maintainers = [ maintainers.ivankovnatsky ]; 24 + license = lib.licenses.asl20; 25 + maintainers = [ lib.maintainers.ivankovnatsky ]; 26 26 }; 27 27 }
+4 -4
pkgs/by-name/ib/ibm-plex/package.nix
··· 37 37 38 38 passthru.updateScript = ./update.sh; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "IBM Plex Typeface"; 42 42 homepage = "https://www.ibm.com/plex/"; 43 43 changelog = "https://github.com/IBM/plex/raw/v${version}/CHANGELOG.md"; 44 - license = licenses.ofl; 45 - platforms = platforms.all; 46 - maintainers = with maintainers; [ 44 + license = lib.licenses.ofl; 45 + platforms = lib.platforms.all; 46 + maintainers = with lib.maintainers; [ 47 47 romildo 48 48 ryanccn 49 49 ];
+4 -4
pkgs/by-name/ig/igmpproxy/package.nix
··· 18 18 19 19 nativeBuildInputs = [ autoreconfHook ]; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Daemon that routes multicast using IGMP forwarding"; 23 23 homepage = "https://github.com/pali/igmpproxy/"; 24 24 changelog = "https://github.com/pali/igmpproxy/releases/tag/${version}"; 25 - license = licenses.gpl2Plus; 26 - maintainers = [ maintainers.sdier ]; 25 + license = lib.licenses.gpl2Plus; 26 + maintainers = [ lib.maintainers.sdier ]; 27 27 # The maintainer is using this on linux, but if you test it on other platforms 28 28 # please add them here! 29 - platforms = platforms.linux; 29 + platforms = lib.platforms.linux; 30 30 mainProgram = "igmpproxy"; 31 31 }; 32 32 }
+3 -3
pkgs/by-name/ig/ignite-cli/package.nix
··· 38 38 } 39 39 ''; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 homepage = "https://ignite.com/"; 43 43 changelog = "https://github.com/ignite/cli/releases/tag/v${version}"; 44 44 description = "All-in-one platform to build, launch, and maintain any crypto application on a sovereign and secured blockchain"; 45 - license = licenses.asl20; 46 - maintainers = with maintainers; [ kashw2 ]; 45 + license = lib.licenses.asl20; 46 + maintainers = with lib.maintainers; [ kashw2 ]; 47 47 mainProgram = "ignite"; 48 48 }; 49 49 }
+3 -3
pkgs/by-name/ig/igrep/package.nix
··· 27 27 }; 28 28 }; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Interactive Grep"; 32 32 homepage = "https://github.com/konradsz/igrep"; 33 33 changelog = "https://github.com/konradsz/igrep/blob/v${version}/CHANGELOG.md"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ _0x4A6F ]; 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ _0x4A6F ]; 36 36 mainProgram = "ig"; 37 37 }; 38 38 }
+3 -3
pkgs/by-name/ip/ipam/package.nix
··· 35 35 --zsh <($out/bin/ipam completion zsh) 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Cli based IPAM written in Go with PowerDNS support"; 40 40 homepage = "https://ipam.lauka.net/"; 41 41 changelog = "https://codeberg.org/lauralani/ipam/releases/tag/v${version}"; 42 - license = licenses.gpl3Plus; 43 - maintainers = [ ]; 42 + license = lib.licenses.gpl3Plus; 43 + maintainers = with lib.maintainers; [ ]; 44 44 mainProgram = "ipam"; 45 45 }; 46 46 }
+3 -3
pkgs/by-name/ip/ipinfo/package.nix
··· 20 20 # Tests require network access 21 21 doCheck = false; 22 22 23 - meta = with lib; { 23 + meta = { 24 24 description = "Command Line Interface for the IPinfo API"; 25 25 homepage = "https://github.com/ipinfo/cli"; 26 26 changelog = "https://github.com/ipinfo/cli/releases/tag/ipinfo-${version}"; 27 - license = with licenses; [ asl20 ]; 28 - maintainers = with maintainers; [ fab ]; 27 + license = with lib.licenses; [ asl20 ]; 28 + maintainers = with lib.maintainers; [ fab ]; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/ip/ipscan/package.nix
··· 51 51 cp usr/share/pixmaps/ipscan.png $out/share/pixmaps/ipscan.png 52 52 ''; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 description = "Angry IP Scanner - fast and friendly network scanner"; 56 56 mainProgram = "ipscan"; 57 57 homepage = "https://angryip.org"; 58 58 downloadPage = "https://github.com/angryip/ipscan/releases/tag/${version}"; 59 59 changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG"; 60 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 61 - license = licenses.gpl2Only; 60 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 61 + license = lib.licenses.gpl2Only; 62 62 platforms = [ "x86_64-linux" ]; 63 - maintainers = with maintainers; [ 63 + maintainers = with lib.maintainers; [ 64 64 kylesferrazza 65 65 totoroot 66 66 ];
+4 -4
pkgs/by-name/ip/iptsd/package.nix
··· 63 63 "-Db_lto=false" # plugin needed to handle lto object -> undefined reference to ... 64 64 ]; 65 65 66 - meta = with lib; { 66 + meta = { 67 67 changelog = "https://github.com/linux-surface/iptsd/releases/tag/v${version}"; 68 68 description = "Userspace daemon for Intel Precise Touch & Stylus"; 69 69 homepage = "https://github.com/linux-surface/iptsd"; 70 - license = licenses.gpl2Plus; 70 + license = lib.licenses.gpl2Plus; 71 71 mainProgram = "iptsd"; 72 - maintainers = with maintainers; [ 72 + maintainers = with lib.maintainers; [ 73 73 tomberek 74 74 dotlambda 75 75 ]; 76 - platforms = platforms.linux; 76 + platforms = lib.platforms.linux; 77 77 }; 78 78 }
+4 -4
pkgs/by-name/iw/iwgtk/package.nix
··· 42 42 substituteInPlace $out/lib/systemd/user/iwgtk.service --subst-var out 43 43 ''; 44 44 45 - meta = with lib; { 45 + meta = { 46 46 description = "Lightweight, graphical wifi management utility for Linux"; 47 47 homepage = "https://github.com/j-lentz/iwgtk"; 48 48 changelog = "https://github.com/j-lentz/iwgtk/blob/v${version}/CHANGELOG"; 49 - license = licenses.gpl3Only; 50 - maintainers = with maintainers; [ figsoda ]; 51 - platforms = platforms.linux; 49 + license = lib.licenses.gpl3Only; 50 + maintainers = with lib.maintainers; [ figsoda ]; 51 + platforms = lib.platforms.linux; 52 52 mainProgram = "iwgtk"; 53 53 }; 54 54 }
+4 -4
pkgs/by-name/je/jetbrains-mono/package.nix
··· 27 27 runHook postInstall 28 28 ''; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Typeface made for developers"; 32 32 homepage = "https://jetbrains.com/mono/"; 33 33 changelog = "https://github.com/JetBrains/JetBrainsMono/blob/v${version}/Changelog.md"; 34 - license = licenses.ofl; 35 - maintainers = with maintainers; [ vinnymeller ]; 36 - platforms = platforms.all; 34 + license = lib.licenses.ofl; 35 + maintainers = with lib.maintainers; [ vinnymeller ]; 36 + platforms = lib.platforms.all; 37 37 }; 38 38 }
+3 -3
pkgs/by-name/jf/jfmt/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-skLK+jYeR0FPxD1fVswiOWyKpzu5/qL5mk69bLEmxic="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "CLI utility to format json files"; 23 23 mainProgram = "jfmt"; 24 24 homepage = "https://github.com/scruffystuffs/jfmt.rs"; 25 25 changelog = "https://github.com/scruffystuffs/jfmt.rs/blob/${version}/CHANGELOG.md"; 26 - license = licenses.mit; 27 - maintainers = [ maintainers.psibi ]; 26 + license = lib.licenses.mit; 27 + maintainers = [ lib.maintainers.psibi ]; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/jf/jfrog-cli/package.nix
··· 34 34 35 35 passthru.updateScript = nix-update-script { }; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 homepage = "https://github.com/jfrog/jfrog-cli"; 39 39 description = "Client for accessing to JFrog's Artifactory and Mission Control through their respective REST APIs"; 40 40 changelog = "https://github.com/jfrog/jfrog-cli/releases/tag/v${version}"; 41 - license = licenses.asl20; 41 + license = lib.licenses.asl20; 42 42 mainProgram = "jf"; 43 - maintainers = with maintainers; [ 43 + maintainers = with lib.maintainers; [ 44 44 detegr 45 45 aidalgol 46 46 ];
+4 -4
pkgs/by-name/jj/jj/package.nix
··· 57 57 }; 58 58 }; 59 59 60 - meta = with lib; { 60 + meta = { 61 61 description = "JSON Stream Editor (command line utility)"; 62 62 longDescription = '' 63 63 JJ is a command line utility that provides a fast and simple way to retrieve ··· 66 66 that do not apply, and aborts as soon as the target value has been found or updated. 67 67 ''; 68 68 homepage = "https://github.com/tidwall/jj"; 69 - changelog = "https://github.com/tidwall/jj/releases/tag/v${version}"; 70 - license = licenses.mit; 69 + changelog = "https://github.com/tidwall/jj/releases/tag/v${finalAttrs.version}"; 70 + license = lib.licenses.mit; 71 71 mainProgram = "jj"; 72 - maintainers = with maintainers; [ katexochen ]; 72 + maintainers = with lib.maintainers; [ katexochen ]; 73 73 }; 74 74 })
+3 -3
pkgs/by-name/jo/jobber/package.nix
··· 35 35 mv $out/bin/jobber{master,runner} $out/libexec/ 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 homepage = "https://dshearer.github.io/jobber"; 40 40 changelog = "https://github.com/dshearer/jobber/releases/tag/v${version}"; 41 41 description = "Alternative to cron, with sophisticated status-reporting and error-handling"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ urandom ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ urandom ]; 44 44 mainProgram = "jobber"; 45 45 }; 46 46 }
+3 -3
pkgs/by-name/jo/joincap/package.nix
··· 25 25 "-w" 26 26 ]; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Merge multiple pcap files together, gracefully"; 30 30 homepage = "https://github.com/assafmo/joincap"; 31 31 changelog = "https://github.com/assafmo/joincap/blob/v${version}/CHANGELOG.md"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ fab ]; 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ fab ]; 34 34 mainProgram = "joincap"; 35 35 }; 36 36 }
+3 -3
pkgs/by-name/jr/jrnl/package.nix
··· 61 61 version = "v${version}"; 62 62 }; 63 63 64 - meta = with lib; { 64 + meta = { 65 65 description = "Command line journal application that stores your journal in a plain text file"; 66 66 homepage = "https://jrnl.sh/"; 67 67 changelog = "https://github.com/jrnl-org/jrnl/releases/tag/v${version}"; 68 - license = licenses.gpl3Only; 69 - maintainers = with maintainers; [ 68 + license = lib.licenses.gpl3Only; 69 + maintainers = with lib.maintainers; [ 70 70 bryanasdev000 71 71 zalakain 72 72 ];
+3 -3
pkgs/by-name/js/jsonnet-language-server/package.nix
··· 23 23 "-X 'main.version=${version}'" 24 24 ]; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Language Server Protocol server for Jsonnet"; 28 28 mainProgram = "jsonnet-language-server"; 29 29 homepage = "https://github.com/grafana/jsonnet-language-server"; 30 30 changelog = "https://github.com/grafana/jsonnet-language-server/releases/tag/v${version}"; 31 - license = licenses.agpl3Only; 32 - maintainers = with maintainers; [ hardselius ]; 31 + license = lib.licenses.agpl3Only; 32 + maintainers = with lib.maintainers; [ hardselius ]; 33 33 }; 34 34 }
+3 -3
pkgs/by-name/jw/jwt-hack/package.nix
··· 22 22 "-s" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Tool for attacking JWT"; 27 27 homepage = "https://github.com/hahwul/jwt-hack"; 28 28 changelog = "https://github.com/hahwul/jwt-hack/releases/tag/v${version}"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "jwt-hack"; 32 32 }; 33 33 }
+4 -4
pkgs/by-name/jx/jx/package.nix
··· 39 39 40 40 passthru.updateScript = nix-update-script { }; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 broken = stdenv.hostPlatform.isDarwin; 44 44 description = "Command line tool for installing and using Jenkins X"; 45 45 mainProgram = "jx"; ··· 50 50 Environments on Pull Requests using using Cloud Native pipelines 51 51 from Tekton. 52 52 ''; 53 - license = licenses.asl20; 54 - maintainers = with maintainers; [ kalbasit ]; 55 - platforms = platforms.linux ++ platforms.darwin; 53 + license = lib.licenses.asl20; 54 + maintainers = with lib.maintainers; [ kalbasit ]; 55 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 56 56 }; 57 57 }
+3 -3
pkgs/by-name/k0/k0sctl/package.nix
··· 44 44 version = "version: (devel)\ncommit: v${version}\n"; 45 45 }; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Bootstrapping and management tool for k0s clusters"; 49 49 homepage = "https://k0sproject.io/"; 50 50 changelog = "https://github.com/k0sproject/k0sctl/releases/tag/v${version}"; 51 - license = licenses.asl20; 51 + license = lib.licenses.asl20; 52 52 mainProgram = "k0sctl"; 53 - maintainers = with maintainers; [ 53 + maintainers = with lib.maintainers; [ 54 54 nickcao 55 55 qjoly 56 56 ];
+4 -4
pkgs/by-name/k3/k3d/package.nix
··· 69 69 70 70 env.GOWORK = "off"; 71 71 72 - meta = with lib; { 72 + meta = { 73 73 homepage = "https://github.com/k3d-io/k3d/"; 74 74 changelog = "https://github.com/k3d-io/k3d/blob/v${version}/CHANGELOG.md"; 75 75 description = "Helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container"; ··· 80 80 k3d creates containerized k3s clusters. This means, that you can spin up a 81 81 multi-node k3s cluster on a single machine using docker. 82 82 ''; 83 - license = licenses.mit; 84 - maintainers = with maintainers; [ 83 + license = lib.licenses.mit; 84 + maintainers = with lib.maintainers; [ 85 85 kuznero 86 86 jlesquembre 87 87 ngerstle 88 88 jk 89 89 ricochet 90 90 ]; 91 - platforms = platforms.linux ++ platforms.darwin; 91 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 92 92 }; 93 93 }
+3 -3
pkgs/by-name/k6/k6/package.nix
··· 35 35 --zsh <($out/bin/k6 completion zsh) 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Modern load testing tool, using Go and JavaScript"; 40 40 mainProgram = "k6"; 41 41 homepage = "https://k6.io/"; 42 42 changelog = "https://github.com/grafana/k6/releases/tag/v${version}"; 43 - license = licenses.agpl3Plus; 44 - maintainers = with maintainers; [ 43 + license = lib.licenses.agpl3Plus; 44 + maintainers = with lib.maintainers; [ 45 45 offline 46 46 bryanasdev000 47 47 kashw2
+3 -3
pkgs/by-name/k8/k8s-manifest-sigstore/package.nix
··· 55 55 }; 56 56 }; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 homepage = "https://github.com/sigstore/k8s-manifest-sigstore"; 60 60 changelog = "https://github.com/sigstore/k8s-manifest-sigstore/releases/tag/v${version}"; 61 61 description = "Kubectl plugin for signing Kubernetes manifest YAML files with sigstore"; 62 62 mainProgram = "kubectl-sigstore"; 63 - license = licenses.asl20; 64 - maintainers = with maintainers; [ bbigras ]; 63 + license = lib.licenses.asl20; 64 + maintainers = with lib.maintainers; [ bbigras ]; 65 65 }; 66 66 }
+3 -3
pkgs/by-name/k9/k9s/package.nix
··· 64 64 65 65 nativeCheckInputs = [ writableTmpDirAsHomeHook ]; 66 66 67 - meta = with lib; { 67 + meta = { 68 68 description = "Kubernetes CLI To Manage Your Clusters In Style"; 69 69 homepage = "https://github.com/derailed/k9s"; 70 70 changelog = "https://github.com/derailed/k9s/releases/tag/v${version}"; 71 - license = licenses.asl20; 71 + license = lib.licenses.asl20; 72 72 mainProgram = "k9s"; 73 - maintainers = with maintainers; [ 73 + maintainers = with lib.maintainers; [ 74 74 Gonzih 75 75 markus1189 76 76 bryanasdev000
+3 -3
pkgs/by-name/kb/kb/package.nix
··· 37 37 pytestCheckHook 38 38 ]; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "Minimalist command line knowledge base manager"; 42 42 longDescription = '' 43 43 kb is a text-oriented minimalist command line knowledge base manager. kb ··· 49 49 ''; 50 50 homepage = "https://github.com/gnebbia/kb"; 51 51 changelog = "https://github.com/gnebbia/kb/blob/v${version}/CHANGELOG.md"; 52 - license = licenses.gpl3Plus; 53 - maintainers = with maintainers; [ wesleyjrz ]; 52 + license = lib.licenses.gpl3Plus; 53 + maintainers = with lib.maintainers; [ wesleyjrz ]; 54 54 mainProgram = "kb"; 55 55 }; 56 56 }
+3 -3
pkgs/by-name/kb/kbs2/package.nix
··· 46 46 --zsh <($out/bin/kbs2 --completions zsh) 47 47 ''; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "Secret manager backed by age"; 51 51 mainProgram = "kbs2"; 52 52 homepage = "https://github.com/woodruffw/kbs2"; 53 53 changelog = "https://github.com/woodruffw/kbs2/blob/v${version}/CHANGELOG.md"; 54 - license = licenses.mit; 55 - maintainers = [ ]; 54 + license = lib.licenses.mit; 55 + maintainers = with lib.maintainers; [ ]; 56 56 }; 57 57 }
+3 -3
pkgs/by-name/kh/khoj/package.nix
··· 134 134 "tests/test_conversation_utils.py" 135 135 ]; 136 136 137 - meta = with lib; { 137 + meta = { 138 138 description = "Natural Language Search Assistant for your Org-Mode and Markdown notes, Beancount transactions and Photos"; 139 139 homepage = "https://github.com/debanjum/khoj"; 140 140 changelog = "https://github.com/debanjum/khoj/releases/tag/${version}"; 141 - license = licenses.agpl3Plus; 142 - maintainers = with maintainers; [ dit7ya ]; 141 + license = lib.licenses.agpl3Plus; 142 + maintainers = with lib.maintainers; [ dit7ya ]; 143 143 broken = true; # last successful build 2024-01-10 144 144 }; 145 145 }
+3 -3
pkgs/by-name/kl/klipper-estimator/package.nix
··· 32 32 33 33 nativeBuildInputs = [ pkg-config ]; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Tool for determining the time a print will take using the Klipper firmware"; 37 37 homepage = "https://github.com/Annex-Engineering/klipper_estimator"; 38 38 changelog = "https://github.com/Annex-Engineering/klipper_estimator/releases/tag/v${version}"; 39 39 mainProgram = "klipper_estimator"; 40 - license = licenses.mit; 41 - maintainers = with maintainers; [ tmarkus ]; 40 + license = lib.licenses.mit; 41 + maintainers = with lib.maintainers; [ tmarkus ]; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/kn/knit/package.nix
··· 27 27 "-X github.com/zyedidia/knit/info.Version=${version}" 28 28 ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Simple and flexible build tool using Lua, similar to make/mk"; 32 32 mainProgram = "knit"; 33 33 homepage = "https://github.com/zyedidia/knit"; 34 34 changelog = "https://github.com/zyedidia/knit/releases/tag/v${version}"; 35 - license = licenses.mit; 36 - maintainers = with maintainers; [ DrSensor ]; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ DrSensor ]; 37 37 }; 38 38 }
+3 -3
pkgs/by-name/kn/knockpy/package.nix
··· 41 41 42 42 pythonImportsCheck = [ "knock" ]; 43 43 44 - meta = with lib; { 44 + meta = { 45 45 description = "Tool to scan subdomains"; 46 46 homepage = "https://github.com/guelfoweb/knock"; 47 47 changelog = "https://github.com/guelfoweb/knock/releases/tag/${version}"; 48 - license = licenses.gpl3Only; 49 - maintainers = with maintainers; [ fab ]; 48 + license = lib.licenses.gpl3Only; 49 + maintainers = with lib.maintainers; [ fab ]; 50 50 mainProgram = "knockpy"; 51 51 }; 52 52 }
+4 -4
pkgs/by-name/kn/knot-dns/package.nix
··· 131 131 ''; 132 132 }; 133 133 134 - meta = with lib; { 134 + meta = { 135 135 description = "Authoritative-only DNS server from .cz domain registry"; 136 136 homepage = "https://knot-dns.cz"; 137 137 changelog = "https://gitlab.nic.cz/knot/knot-dns/-/releases/v${version}"; 138 - license = licenses.gpl3Plus; 139 - platforms = platforms.unix; 140 - maintainers = [ maintainers.vcunat ]; 138 + license = lib.licenses.gpl3Plus; 139 + platforms = lib.platforms.unix; 140 + maintainers = [ lib.maintainers.vcunat ]; 141 141 mainProgram = "knotd"; 142 142 }; 143 143 }
+3 -3
pkgs/by-name/kr/krabby/package.nix
··· 15 15 useFetchCargoVendor = true; 16 16 cargoHash = "sha256-aJBZtRs83KwnxlgNn/5zEGCw4YUl4mRcs1dFi2uaIrc="; 17 17 18 - meta = with lib; { 18 + meta = { 19 19 description = "Print pokemon sprites in your terminal"; 20 20 homepage = "https://github.com/yannjor/krabby"; 21 21 changelog = "https://github.com/yannjor/krabby/releases/tag/v${version}"; 22 - license = licenses.gpl3; 23 - maintainers = with maintainers; [ ruby0b ]; 22 + license = lib.licenses.gpl3; 23 + maintainers = with lib.maintainers; [ ruby0b ]; 24 24 mainProgram = "krabby"; 25 25 }; 26 26 }
+3 -3
pkgs/by-name/kr/krbjack/package.nix
··· 38 38 "krbjack" 39 39 ]; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Kerberos AP-REQ hijacking tool with DNS unsecure updates abuse"; 43 43 homepage = "https://github.com/almandin/krbjack"; 44 44 changelog = "https://github.com/almandin/krbjack/releases/tag/${version}}"; 45 - license = licenses.beerware; 46 - maintainers = with maintainers; [ fab ]; 45 + license = lib.licenses.beerware; 46 + maintainers = with lib.maintainers; [ fab ]; 47 47 mainProgram = "krbjack"; 48 48 }; 49 49 }
+3 -3
pkgs/by-name/kr/krelay/package.nix
··· 29 29 mv $out/bin/client $out/bin/kubectl-relay 30 30 ''; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Drop-in replacement for `kubectl port-forward` with some enhanced features"; 34 34 homepage = "https://github.com/knight42/krelay"; 35 35 changelog = "https://github.com/knight42/krelay/releases/tag/v${version}"; 36 - license = licenses.mit; 37 - maintainers = with maintainers; [ ivankovnatsky ]; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ ivankovnatsky ]; 38 38 mainProgram = "kubectl-relay"; 39 39 }; 40 40 }
+3 -3
pkgs/by-name/kr/krill/package.nix
··· 30 30 # disable failing tests on darwin 31 31 doCheck = !stdenv.hostPlatform.isDarwin; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "RPKI Certificate Authority and Publication Server written in Rust"; 35 35 longDescription = '' 36 36 Krill is a free, open source RPKI Certificate Authority that lets you run ··· 40 40 ''; 41 41 homepage = "https://github.com/NLnetLabs/krill"; 42 42 changelog = "https://github.com/NLnetLabs/krill/releases/tag/v${version}"; 43 - license = licenses.mpl20; 44 - maintainers = with maintainers; [ steamwalker ]; 43 + license = lib.licenses.mpl20; 44 + maintainers = with lib.maintainers; [ steamwalker ]; 45 45 }; 46 46 }
+3 -3
pkgs/by-name/ky/kyverno/package.nix
··· 47 47 version = "v${version}"; # needed because testVersion uses grep -Fw 48 48 }; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Kubernetes Native Policy Management"; 52 52 mainProgram = "kyverno"; 53 53 homepage = "https://kyverno.io/"; 54 54 changelog = "https://github.com/kyverno/kyverno/releases/tag/v${version}"; 55 - license = licenses.asl20; 56 - maintainers = with maintainers; [ bryanasdev000 ]; 55 + license = lib.licenses.asl20; 56 + maintainers = with lib.maintainers; [ bryanasdev000 ]; 57 57 }; 58 58 }
+3 -3
pkgs/by-name/ld/ldapmonitor/package.nix
··· 32 32 runHook postInstall 33 33 ''; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Tool to monitor creation, deletion and changes to LDAP objects"; 37 37 mainProgram = "ldapmonitor"; 38 38 homepage = "https://github.com/p0dalirius/LDAPmonitor"; 39 39 changelog = "https://github.com/p0dalirius/LDAPmonitor/releases/tag/${version}"; 40 - license = with licenses; [ gpl3Only ]; 41 - maintainers = with maintainers; [ fab ]; 40 + license = with lib.licenses; [ gpl3Only ]; 41 + maintainers = with lib.maintainers; [ fab ]; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/ld/ldapnomnom/package.nix
··· 22 22 "-s" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Tool to anonymously bruteforce usernames from Domain controllers"; 27 27 homepage = "https://github.com/lkarlslund/ldapnomnom"; 28 28 changelog = "https://github.com/lkarlslund/ldapnomnom/releases/tag/v${version}"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "ldapnomnom"; 32 32 }; 33 33 }
+4 -4
pkgs/by-name/ld/ldmud/package.nix
··· 102 102 cp -v ../COPYRIGHT $out/share/ 103 103 ''; 104 104 105 - meta = with lib; { 105 + meta = { 106 106 description = "Gamedriver for LPMuds including a LPC compiler, interpreter and runtime"; 107 107 homepage = "https://ldmud.eu"; 108 108 changelog = "https://github.com/ldmud/ldmud/blob/${version}/HISTORY"; ··· 116 116 a driver in its own right. 117 117 ''; 118 118 # See https://github.com/ldmud/ldmud/blob/master/COPYRIGHT 119 - license = licenses.unfreeRedistributable; 120 - platforms = with platforms; linux ++ darwin; 121 - maintainers = with maintainers; [ cpu ]; 119 + license = lib.licenses.unfreeRedistributable; 120 + platforms = with lib.platforms; linux ++ darwin; 121 + maintainers = with lib.maintainers; [ cpu ]; 122 122 }; 123 123 }
+3 -3
pkgs/by-name/ld/ldproxy/package.nix
··· 24 24 # cf: https://github.com/esp-rs/embuild/tree/v0.31.4/ldproxy 25 25 buildAndTestSubdir = "ldproxy"; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 description = "Linker Proxy: a simple tool to forward linker arguments to the actual linker executable"; 29 29 homepage = "https://github.com/esp-rs/embuild"; 30 30 changelog = "https://github.com/esp-rs/embuild/blob/v${version}/CHANGELOG.md"; 31 - license = with licenses; [ 31 + license = with lib.licenses; [ 32 32 mit # or 33 33 asl20 34 34 ]; 35 - maintainers = with maintainers; [ vpochapuis ]; 35 + maintainers = with lib.maintainers; [ vpochapuis ]; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/lf/lf/package.nix
··· 37 37 installShellCompletion etc/lf.{bash,zsh,fish} 38 38 ''; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "Terminal file manager written in Go and heavily inspired by ranger"; 42 42 longDescription = '' 43 43 lf (as in "list files") is a terminal file manager written in Go. It is ··· 47 47 ''; 48 48 homepage = "https://godoc.org/github.com/gokcehan/lf"; 49 49 changelog = "https://github.com/gokcehan/lf/releases/tag/r${version}"; 50 - license = licenses.mit; 51 - maintainers = with maintainers; [ dotlambda ]; 50 + license = lib.licenses.mit; 51 + maintainers = with lib.maintainers; [ dotlambda ]; 52 52 mainProgram = "lf"; 53 53 }; 54 54 }
+4 -4
pkgs/by-name/lm/lmdb/package.nix
··· 73 73 ln -s lmdb.pc "$dev/lib/pkgconfig/liblmdb.pc" 74 74 ''; 75 75 76 - meta = with lib; { 76 + meta = { 77 77 description = "Lightning memory-mapped database"; 78 78 longDescription = '' 79 79 LMDB is an ultra-fast, ultra-compact key-value embedded data store ··· 84 84 ''; 85 85 homepage = "https://symas.com/lmdb/"; 86 86 changelog = "https://git.openldap.org/openldap/openldap/-/blob/LMDB_${version}/libraries/liblmdb/CHANGES"; 87 - maintainers = with maintainers; [ 87 + maintainers = with lib.maintainers; [ 88 88 jb55 89 89 vcunat 90 90 ]; 91 - license = licenses.openldap; 92 - platforms = platforms.all; 91 + license = lib.licenses.openldap; 92 + platforms = lib.platforms.all; 93 93 }; 94 94 }
+3 -3
pkgs/by-name/ls/lscolors/package.nix
··· 21 21 # setid is not allowed in the sandbox 22 22 checkFlags = [ "--skip=tests::style_for_setid" ]; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 description = "Rust library and tool to colorize paths using LS_COLORS"; 26 26 homepage = "https://github.com/sharkdp/lscolors"; 27 27 changelog = "https://github.com/sharkdp/lscolors/releases/tag/v${version}"; 28 - license = with licenses; [ 28 + license = with lib.licenses; [ 29 29 asl20 # or 30 30 mit 31 31 ]; 32 - maintainers = with maintainers; [ SuperSandro2000 ]; 32 + maintainers = with lib.maintainers; [ SuperSandro2000 ]; 33 33 mainProgram = "lscolors"; 34 34 }; 35 35 }
+4 -4
pkgs/by-name/ls/lse/package.nix
··· 28 28 --prefix PATH : ${lib.makeBinPath [ bash ]} 29 29 ''; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Linux enumeration tool with verbosity levels"; 33 33 homepage = "https://github.com/diego-treitos/linux-smart-enumeration"; 34 34 changelog = "https://github.com/diego-treitos/linux-smart-enumeration/releases/tag/${version}"; 35 - license = licenses.gpl3Only; 36 - maintainers = with maintainers; [ fab ]; 35 + license = lib.licenses.gpl3Only; 36 + maintainers = with lib.maintainers; [ fab ]; 37 37 mainProgram = "lse.sh"; 38 - platforms = platforms.all; 38 + platforms = lib.platforms.all; 39 39 }; 40 40 }
+2 -2
pkgs/by-name/ls/lsh/package.nix
··· 14 14 }; 15 15 vendorHash = "sha256-ogdyzfayleka4Y8x74ZtttD7MaeCl1qP/rQi9x0tMto="; 16 16 subPackages = [ "." ]; 17 - meta = with lib; { 17 + meta = { 18 18 changelog = "https://github.com/latitudesh/lsh/releases/tag/v${version}"; 19 19 description = "Command-Line Interface for Latitude.sh"; 20 20 homepage = "https://github.com/latitudesh/lsh"; 21 - license = licenses.mit; 21 + license = lib.licenses.mit; 22 22 maintainers = [ lib.maintainers.dzmitry-lahoda ]; 23 23 }; 24 24 }
+4 -4
pkgs/by-name/lt/lttoolbox/package.nix
··· 47 47 python3 tests/run_tests.py 48 48 ''; 49 49 50 - meta = with lib; { 50 + meta = { 51 51 description = "Finite state compiler, processor and helper tools used by apertium"; 52 52 homepage = "https://github.com/apertium/lttoolbox"; 53 - maintainers = with maintainers; [ onthestairs ]; 53 + maintainers = with lib.maintainers; [ onthestairs ]; 54 54 changelog = "https://github.com/apertium/lttoolbox/releases/tag/v${version}"; 55 - license = licenses.gpl2; 56 - platforms = platforms.linux ++ platforms.darwin; 55 + license = lib.licenses.gpl2; 56 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 57 57 }; 58 58 }
+4 -4
pkgs/by-name/lx/lx-music-desktop/package.nix
··· 86 86 --add-flags ${lib.escapeShellArg commandLineArgs} 87 87 ''; 88 88 89 - meta = with lib; { 89 + meta = { 90 90 broken = stdenv.hostPlatform.isDarwin; 91 91 description = "Music software based on Electron and Vue"; 92 92 homepage = "https://github.com/lyswhut/lx-music-desktop"; 93 93 changelog = "https://github.com/lyswhut/lx-music-desktop/releases/tag/v${version}"; 94 - license = licenses.asl20; 94 + license = lib.licenses.asl20; 95 95 platforms = electron.meta.platforms; 96 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 96 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 97 97 mainProgram = "lx-music-desktop"; 98 - maintainers = with maintainers; [ oosquare ]; 98 + maintainers = with lib.maintainers; [ oosquare ]; 99 99 }; 100 100 }
+4 -4
pkgs/by-name/lx/lxd-unwrapped-lts/package.nix
··· 100 100 }; 101 101 }; 102 102 103 - meta = with lib; { 103 + meta = { 104 104 description = "Daemon based on liblxc offering a REST API to manage containers"; 105 105 homepage = "https://ubuntu.com/lxd"; 106 106 changelog = "https://github.com/canonical/lxd/releases/tag/lxd-${version}"; 107 - license = with licenses; [ 107 + license = with lib.licenses; [ 108 108 asl20 109 109 agpl3Plus 110 110 ]; 111 - maintainers = [ ]; 112 - platforms = platforms.linux; 111 + maintainers = with lib.maintainers; [ ]; 112 + platforms = lib.platforms.linux; 113 113 }; 114 114 }
+3 -3
pkgs/by-name/mb/mbtileserver/package.nix
··· 17 17 18 18 vendorHash = "sha256-yn7LcR/DvHDSRicUnWLrFZKqZti+YQoLSk3mZkDIj10="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Simple Go-based server for map tiles stored in mbtiles format"; 22 22 mainProgram = "mbtileserver"; 23 23 homepage = "https://github.com/consbio/mbtileserver"; 24 24 changelog = "https://github.com/consbio/mbtileserver/blob/v${version}/CHANGELOG.md"; 25 - license = licenses.isc; 26 - teams = [ teams.geospatial ]; 25 + license = lib.licenses.isc; 26 + teams = [ lib.teams.geospatial ]; 27 27 }; 28 28 }
+4 -4
pkgs/by-name/mb/mbusd/package.nix
··· 22 22 pkg-config 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Modbus TCP to Modbus RTU (RS-232/485) gateway"; 27 27 homepage = "https://github.com/3cky/mbusd"; 28 28 changelog = "https://github.com/3cky/mbusd/blob/v${version}/CHANGELOG.md"; 29 - license = licenses.bsd3; 30 - maintainers = with maintainers; [ sikmir ]; 31 - platforms = platforms.unix; 29 + license = lib.licenses.bsd3; 30 + maintainers = with lib.maintainers; [ sikmir ]; 31 + platforms = lib.platforms.unix; 32 32 mainProgram = "mbusd"; 33 33 }; 34 34 }
+3 -3
pkgs/by-name/md/mdbook-emojicodes/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-+VVkrXvsqtizeVhfuO0U8ADfSkmovpT7DVwrz7QljU0="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "MDBook preprocessor for converting emojicodes (e.g. `: cat :`) into emojis 🐱"; 23 23 mainProgram = "mdbook-emojicodes"; 24 24 homepage = "https://github.com/blyxyas/mdbook-emojicodes"; 25 25 changelog = "https://github.com/blyxyas/mdbook-emojicodes/releases/tag/${version}"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ 28 28 matthiasbeyer 29 29 ]; 30 30 };
+3 -3
pkgs/by-name/md/mdbook-i18n-helpers/package.nix
··· 19 19 useFetchCargoVendor = true; 20 20 cargoHash = "sha256-ZBGMfJA2diPvvoIXPosUs4ngXU9/GMGa4GAlKIjwm8s="; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "Helpers for a mdbook i18n workflow based on Gettext"; 24 24 homepage = "https://github.com/google/mdbook-i18n-helpers"; 25 25 changelog = "https://github.com/google/mdbook-i18n-helpers/releases/tag/${version}"; 26 - license = licenses.asl20; 27 - maintainers = with maintainers; [ 26 + license = lib.licenses.asl20; 27 + maintainers = with lib.maintainers; [ 28 28 teutat3s 29 29 matthiasbeyer 30 30 ];
+5 -5
pkgs/by-name/mm/mmseqs2/package.nix
··· 85 85 ''; 86 86 }; 87 87 88 - meta = with lib; { 88 + meta = { 89 89 description = "Ultra fast and sensitive sequence search and clustering suite"; 90 90 mainProgram = "mmseqs"; 91 91 homepage = "https://mmseqs.com/"; 92 - changelog = "https://github.com/soedinglab/MMseqs2/releases/tag/${version}"; 93 - license = licenses.mit; 94 - maintainers = with maintainers; [ natsukium ]; 95 - platforms = platforms.unix; 92 + changelog = "https://github.com/soedinglab/MMseqs2/releases/tag/${finalAttrs.version}"; 93 + license = lib.licenses.mit; 94 + maintainers = with lib.maintainers; [ natsukium ]; 95 + platforms = lib.platforms.unix; 96 96 }; 97 97 })
+3 -3
pkgs/by-name/mm/mmtc/package.nix
··· 28 28 29 29 GEN_ARTIFACTS = "artifacts"; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Minimal mpd terminal client that aims to be simple yet highly configurable"; 33 33 homepage = "https://github.com/figsoda/mmtc"; 34 34 changelog = "https://github.com/figsoda/mmtc/blob/v${version}/CHANGELOG.md"; 35 - license = licenses.mpl20; 36 - maintainers = with maintainers; [ figsoda ]; 35 + license = lib.licenses.mpl20; 36 + maintainers = with lib.maintainers; [ figsoda ]; 37 37 mainProgram = "mmtc"; 38 38 }; 39 39 }
+3 -3
pkgs/by-name/mq/mqtt-benchmark/package.nix
··· 17 17 18 18 vendorHash = "sha256-ZN5tNDIisbhMMOA2bVJnE96GPdZ54HXTneFQewwJmHI="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "MQTT broker benchmarking tool"; 22 22 homepage = "https://github.com/krylovsk/mqtt-benchmark"; 23 23 changelog = "https://github.com/krylovsk/mqtt-benchmark/releases/tag/v${version}"; 24 - license = licenses.asl20; 25 - maintainers = with maintainers; [ fab ]; 24 + license = lib.licenses.asl20; 25 + maintainers = with lib.maintainers; [ fab ]; 26 26 mainProgram = "mqtt-benchmark"; 27 27 }; 28 28 }
+3 -3
pkgs/by-name/mq/mqtt-explorer/package.nix
··· 168 168 }) 169 169 ]; 170 170 171 - meta = with lib; { 171 + meta = { 172 172 description = "All-round MQTT client that provides a structured topic overview"; 173 173 homepage = "https://github.com/thomasnordquist/MQTT-Explorer"; 174 174 changelog = "https://github.com/thomasnordquist/MQTT-Explorer/releases/tag/v${version}"; 175 - license = licenses.cc-by-nd-40; 176 - maintainers = with maintainers; [ tsandrini ]; 175 + license = lib.licenses.cc-by-nd-40; 176 + maintainers = with lib.maintainers; [ tsandrini ]; 177 177 platforms = electron.meta.platforms; 178 178 mainProgram = "mqtt-explorer"; 179 179 };
+4 -4
pkgs/by-name/mq/mqttx/package.nix
··· 48 48 --replace-fail 'Exec=AppRun' 'Exec=${pname}' 49 49 ''; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 description = "Powerful cross-platform MQTT 5.0 Desktop, CLI, and WebSocket client tools"; 53 53 homepage = "https://mqttx.app/"; 54 54 changelog = "https://github.com/emqx/MQTTX/releases/tag/v${version}"; 55 - license = licenses.asl20; 56 - platforms = platforms.linux; 57 - maintainers = with maintainers; [ gaelreyrol ]; 55 + license = lib.licenses.asl20; 56 + platforms = lib.platforms.linux; 57 + maintainers = with lib.maintainers; [ gaelreyrol ]; 58 58 mainProgram = "mqttx"; 59 59 }; 60 60 }
+4 -4
pkgs/by-name/mu/mu/package.nix
··· 89 89 # Tests need a UTF-8 aware locale configured 90 90 env.LANG = "C.UTF-8"; 91 91 92 - meta = with lib; { 92 + meta = { 93 93 description = "Collection of utilities for indexing and searching Maildirs"; 94 - license = licenses.gpl3Plus; 94 + license = lib.licenses.gpl3Plus; 95 95 homepage = "https://www.djcbsoftware.nl/code/mu/"; 96 96 changelog = "https://github.com/djcb/mu/releases/tag/v${version}"; 97 - maintainers = with maintainers; [ 97 + maintainers = with lib.maintainers; [ 98 98 antono 99 99 chvp 100 100 peterhoeg 101 101 ]; 102 102 mainProgram = "mu"; 103 - platforms = platforms.unix; 103 + platforms = lib.platforms.unix; 104 104 }; 105 105 }
+3 -3
pkgs/by-name/mu/mubeng/package.nix
··· 23 23 "-X=ktbs.dev/mubeng/common.Version=${version}" 24 24 ]; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Proxy checker and IP rotator"; 28 28 homepage = "https://github.com/kitabisa/mubeng"; 29 29 changelog = "https://github.com/kitabisa/mubeng/releases/tag/v${version}"; 30 - license = licenses.asl20; 31 - maintainers = with maintainers; [ fab ]; 30 + license = lib.licenses.asl20; 31 + maintainers = with lib.maintainers; [ fab ]; 32 32 mainProgram = "mubeng"; 33 33 }; 34 34 }
+3 -3
pkgs/by-name/mu/muffet/package.nix
··· 17 17 18 18 vendorHash = "sha256-scma8hrm8e/KU2x+TIGOvaUk6nYxKIZ1eaGqs/W2I0I="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Website link checker which scrapes and inspects all pages in a website recursively"; 22 22 homepage = "https://github.com/raviqqe/muffet"; 23 23 changelog = "https://github.com/raviqqe/muffet/releases/tag/v${version}"; 24 - license = licenses.mit; 25 - maintainers = with maintainers; [ figsoda ]; 24 + license = lib.licenses.mit; 25 + maintainers = with lib.maintainers; [ figsoda ]; 26 26 mainProgram = "muffet"; 27 27 }; 28 28 }
+4 -4
pkgs/by-name/mu/mupdf/package.nix
··· 278 278 }; 279 279 }; 280 280 281 - meta = with lib; { 281 + meta = { 282 282 homepage = "https://mupdf.com"; 283 283 description = "Lightweight PDF, XPS, and E-book viewer and toolkit written in portable C"; 284 284 changelog = "https://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=${version}"; 285 - license = licenses.agpl3Plus; 286 - maintainers = with maintainers; [ fpletz ]; 287 - platforms = platforms.unix; 285 + license = lib.licenses.agpl3Plus; 286 + maintainers = with lib.maintainers; [ fpletz ]; 287 + platforms = lib.platforms.unix; 288 288 mainProgram = "mupdf"; 289 289 }; 290 290 }
+3 -3
pkgs/by-name/mu/music-assistant/frontend.nix
··· 26 26 27 27 pythonImportsCheck = [ "music_assistant_frontend" ]; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 changelog = "https://github.com/music-assistant/frontend/releases/tag/${version}"; 31 31 description = "Music Assistant frontend"; 32 32 homepage = "https://github.com/music-assistant/frontend"; 33 - license = licenses.asl20; 34 - maintainers = with maintainers; [ hexa ]; 33 + license = lib.licenses.asl20; 34 + maintainers = with lib.maintainers; [ hexa ]; 35 35 }; 36 36 }
+3 -3
pkgs/by-name/mu/music-assistant/package.nix
··· 173 173 tests = nixosTests.music-assistant; 174 174 }; 175 175 176 - meta = with lib; { 176 + meta = { 177 177 changelog = "https://github.com/music-assistant/server/releases/tag/${version}"; 178 178 description = "Music Assistant is a music library manager for various music sources which can easily stream to a wide range of supported players"; 179 179 longDescription = '' ··· 182 182 always-on device like a Raspberry Pi, a NAS or an Intel NUC or alike. 183 183 ''; 184 184 homepage = "https://github.com/music-assistant/server"; 185 - license = licenses.asl20; 186 - maintainers = with maintainers; [ hexa ]; 185 + license = lib.licenses.asl20; 186 + maintainers = with lib.maintainers; [ hexa ]; 187 187 mainProgram = "mass"; 188 188 }; 189 189 }
+3 -3
pkgs/by-name/mu/musl/package.nix
··· 163 163 164 164 passthru.linuxHeaders = linuxHeaders; 165 165 166 - meta = with lib; { 166 + meta = { 167 167 description = "Efficient, small, quality libc implementation"; 168 168 homepage = "https://musl.libc.org/"; 169 169 changelog = "https://git.musl-libc.org/cgit/musl/tree/WHATSNEW?h=v${version}"; 170 - license = licenses.mit; 170 + license = lib.licenses.mit; 171 171 platforms = [ 172 172 "aarch64-linux" 173 173 "armv5tel-linux" ··· 190 190 "s390x-linux" 191 191 "x86_64-linux" 192 192 ]; 193 - maintainers = with maintainers; [ 193 + maintainers = with lib.maintainers; [ 194 194 thoughtpolice 195 195 dtzWill 196 196 ];
+3 -3
pkgs/by-name/mu/mutagen-compose/package.nix
··· 23 23 24 24 tags = [ "mutagencompose" ]; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Compose with Mutagen integration"; 28 28 homepage = "https://mutagen.io/"; 29 29 changelog = "https://github.com/mutagen-io/mutagen-compose/releases/tag/v${version}"; 30 - maintainers = [ maintainers.matthewpi ]; 31 - license = licenses.mit; 30 + maintainers = [ lib.maintainers.matthewpi ]; 31 + license = lib.licenses.mit; 32 32 mainProgram = "mutagen-compose"; 33 33 }; 34 34 }
+4 -4
pkgs/by-name/mu/mutagen/package.nix
··· 60 60 --zsh mutagen.zsh 61 61 ''; 62 62 63 - meta = with lib; { 63 + meta = { 64 64 description = "Make remote development work with your local tools"; 65 65 homepage = "https://mutagen.io/"; 66 66 changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}"; 67 - maintainers = [ ]; 68 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 69 - license = licenses.mit; 67 + maintainers = with lib.maintainers; [ ]; 68 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 69 + license = lib.licenses.mit; 70 70 }; 71 71 }
+3 -3
pkgs/by-name/mu/mutmut/package.nix
··· 31 31 textual 32 32 ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "mutation testing system for Python, with a strong focus on ease of use"; 36 36 mainProgram = "mutmut"; 37 37 homepage = "https://github.com/boxed/mutmut"; 38 38 changelog = "https://github.com/boxed/mutmut/blob/${version}/HISTORY.rst"; 39 - license = licenses.bsd3; 40 - maintainers = with maintainers; [ 39 + license = lib.licenses.bsd3; 40 + maintainers = with lib.maintainers; [ 41 41 l0b0 42 42 synthetica 43 43 ];
+3 -3
pkgs/by-name/nb/nbtscanner/package.nix
··· 35 35 36 36 versionCheckProgramArg = "--version"; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "NetBIOS scanner written in Rust"; 40 40 homepage = "https://github.com/jonkgrimes/nbtscanner"; 41 41 changelog = "https://github.com/jonkgrimes/nbtscanner/releases/tag/${version}"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ fab ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ fab ]; 44 44 mainProgram = "nbtscanner"; 45 45 }; 46 46 }
+4 -4
pkgs/by-name/ng/nghttp2/package.nix
··· 122 122 inherit curl libsoup_3; 123 123 }; 124 124 125 - meta = with lib; { 125 + meta = { 126 126 description = "HTTP/2 C library and tools"; 127 127 longDescription = '' 128 128 nghttp2 is an implementation of the HyperText Transfer Protocol version 2 in C. ··· 137 137 homepage = "https://nghttp2.org/"; 138 138 changelog = "https://github.com/nghttp2/nghttp2/releases/tag/v${version}"; 139 139 # News articles with changes summary can be found here: https://nghttp2.org/blog/archives/ 140 - license = licenses.mit; 141 - maintainers = with maintainers; [ c0bw3b ]; 142 - platforms = platforms.all; 140 + license = lib.licenses.mit; 141 + maintainers = with lib.maintainers; [ c0bw3b ]; 142 + platforms = lib.platforms.all; 143 143 }; 144 144 }
+3 -3
pkgs/by-name/nk/nkeys/package.nix
··· 17 17 18 18 vendorHash = "sha256-89DGLTkt9c8jJhAX3Uo8BBtLcBbnYE0q4mCqq/RGXM4="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Public-key signature system for NATS"; 22 22 homepage = "https://github.com/nats-io/nkeys"; 23 23 changelog = "https://github.com/nats-io/nkeys/releases/tag/v${version}"; 24 - license = with licenses; [ mit ]; 25 - maintainers = with maintainers; [ fab ]; 24 + license = with lib.licenses; [ mit ]; 25 + maintainers = with lib.maintainers; [ fab ]; 26 26 mainProgram = "nk"; 27 27 }; 28 28 }
+3 -3
pkgs/by-name/nm/nmap-formatter/package.nix
··· 17 17 18 18 vendorHash = "sha256-xOS59co6FE2lJae2VtsBKcGjvmMRiGlmZKbqH++mEYk="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Tool that allows you to convert nmap output"; 22 22 mainProgram = "nmap-formatter"; 23 23 homepage = "https://github.com/vdjagilev/nmap-formatter"; 24 24 changelog = "https://github.com/vdjagilev/nmap-formatter/releases/tag/v${version}"; 25 - license = licenses.mit; 26 - maintainers = with maintainers; [ fab ]; 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ fab ]; 27 27 }; 28 28 }
+3 -3
pkgs/by-name/np/np/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Tool to parse, deduplicate, and query multiple port scans"; 27 27 homepage = "https://github.com/leesoh/np"; 28 28 changelog = "https://github.com/leesoh/np/releases/tag/v${version}"; 29 - license = licenses.agpl3Only; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.agpl3Only; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "np"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/np/npm-check/package.nix
··· 21 21 22 22 dontNpmBuild = true; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 description = "Check for outdated, incorrect, and unused dependencies"; 26 26 mainProgram = "npm-check"; 27 27 homepage = "https://github.com/dylang/npm-check"; 28 28 changelog = "https://github.com/dylang/npm-check/releases/tag/v${version}"; 29 - license = licenses.mit; 30 - maintainers = [ maintainers.thomasjm ]; 29 + license = lib.licenses.mit; 30 + maintainers = [ lib.maintainers.thomasjm ]; 31 31 }; 32 32 }
+4 -4
pkgs/by-name/nr/nray/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Distributed port scanner"; 27 27 homepage = "https://github.com/nray-scanner/nray"; 28 28 changelog = "https://github.com/nray-scanner/nray/releases/tag/v${version}"; 29 - license = licenses.gpl3Only; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.gpl3Only; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "nray"; 32 - platforms = platforms.linux; 32 + platforms = lib.platforms.linux; 33 33 }; 34 34 }
+3 -3
pkgs/by-name/nt/ntlmrecon/package.nix
··· 30 30 "ntlmrecon" 31 31 ]; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "Information enumerator for NTLM authentication enabled web endpoints"; 35 35 mainProgram = "ntlmrecon"; 36 36 homepage = "https://github.com/pwnfoo/NTLMRecon"; 37 37 changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}"; 38 - license = with licenses; [ mit ]; 39 - maintainers = with maintainers; [ fab ]; 38 + license = with lib.licenses; [ mit ]; 39 + maintainers = with lib.maintainers; [ fab ]; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/nv/nvdtools/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Tools to work with the feeds (vulnerabilities, CPE dictionary etc.) distributed by National Vulnerability Database"; 27 27 homepage = "https://github.com/facebookincubator/nvdtools"; 28 28 changelog = "https://github.com/facebookincubator/nvdtools/releases/tag/v${version}"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 }; 32 32 }
+4 -4
pkgs/by-name/ob/obs-cli/package.nix
··· 29 29 "-w" 30 30 ]; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "OBS-cli is a command-line remote control for OBS"; 34 34 homepage = "https://github.com/muesli/obs-cli"; 35 35 changelog = "https://github.com/muesli/obs-cli/releases/tag/v${version}"; 36 - license = licenses.mit; 37 - maintainers = with maintainers; [ flexiondotorg ]; 38 - platforms = platforms.linux ++ platforms.darwin; 36 + license = lib.licenses.mit; 37 + maintainers = with lib.maintainers; [ flexiondotorg ]; 38 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 39 39 mainProgram = "obs-cli"; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/od/odo/package.nix
··· 34 34 version = "v${version}"; 35 35 }; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Developer-focused CLI for OpenShift and Kubernetes"; 39 39 mainProgram = "odo"; 40 - license = licenses.asl20; 40 + license = lib.licenses.asl20; 41 41 homepage = "https://odo.dev"; 42 42 changelog = "https://github.com/redhat-developer/odo/releases/v${version}"; 43 - maintainers = with maintainers; [ stehessel ]; 43 + maintainers = with lib.maintainers; [ stehessel ]; 44 44 }; 45 45 }
+3 -3
pkgs/by-name/oh/oha/package.nix
··· 34 34 # tests don't work inside the sandbox 35 35 doCheck = false; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "HTTP load generator inspired by rakyll/hey with tui animation"; 39 39 homepage = "https://github.com/hatoo/oha"; 40 40 changelog = "https://github.com/hatoo/oha/blob/v${version}/CHANGELOG.md"; 41 - license = licenses.mit; 42 - maintainers = with maintainers; [ figsoda ]; 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ figsoda ]; 43 43 mainProgram = "oha"; 44 44 }; 45 45 }
+3 -3
pkgs/by-name/ol/olaris-server/package.nix
··· 57 57 wrapProgram $out/bin/olaris-server --prefix PATH : ${lib.makeBinPath [ ffmpeg ]} 58 58 ''; 59 59 60 - meta = with lib; { 60 + meta = { 61 61 description = "Media manager and transcoding server"; 62 62 homepage = "https://gitlab.com/olaris/olaris-server"; 63 63 changelog = "https://gitlab.com/olaris/olaris-server/-/releases/v${version}"; 64 - license = licenses.gpl3Only; 65 - maintainers = with maintainers; [ urandom ]; 64 + license = lib.licenses.gpl3Only; 65 + maintainers = with lib.maintainers; [ urandom ]; 66 66 }; 67 67 }
+4 -4
pkgs/by-name/os/osinfo-db/package.nix
··· 26 26 osinfo-db-import --dir "$out/share/osinfo" "${src}" 27 27 ''; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Osinfo database of information about operating systems for virtualization provisioning tools"; 31 31 homepage = "https://gitlab.com/libosinfo/osinfo-db/"; 32 32 changelog = "https://gitlab.com/libosinfo/osinfo-db/-/commits/v${version}"; 33 - license = licenses.gpl2Plus; 34 - platforms = platforms.unix; 35 - maintainers = [ maintainers.bjornfor ]; 33 + license = lib.licenses.gpl2Plus; 34 + platforms = lib.platforms.unix; 35 + maintainers = [ lib.maintainers.bjornfor ]; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/os/ossutil/package.nix
··· 20 20 # don't run tests as they require secret access keys that only travis has 21 21 doCheck = false; 22 22 23 - meta = with lib; { 23 + meta = { 24 24 description = "User friendly command line tool to access Alibaba Cloud OSS"; 25 25 homepage = "https://github.com/aliyun/ossutil"; 26 26 changelog = "https://github.com/aliyun/ossutil/blob/v${version}/CHANGELOG.md"; 27 - license = licenses.mit; 28 - maintainers = with maintainers; [ jpetrucciani ]; 27 + license = lib.licenses.mit; 28 + maintainers = with lib.maintainers; [ jpetrucciani ]; 29 29 mainProgram = "ossutil"; 30 30 }; 31 31 }
+3 -3
pkgs/by-name/os/osv-detector/package.nix
··· 50 50 version = "osv-detector ${version} (unknown, commit none)"; 51 51 }; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Auditing tool for detecting vulnerabilities"; 55 55 mainProgram = "osv-detector"; 56 56 homepage = "https://github.com/G-Rath/osv-detector"; 57 57 changelog = "https://github.com/G-Rath/osv-detector/releases/tag/v${version}"; 58 - license = licenses.mit; 59 - maintainers = with maintainers; [ fab ]; 58 + license = lib.licenses.mit; 59 + maintainers = with lib.maintainers; [ fab ]; 60 60 }; 61 61 }
+3 -3
pkgs/by-name/os/osv-scanner/package.nix
··· 38 38 package = osv-scanner; 39 39 }; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Vulnerability scanner written in Go which uses the data provided by https://osv.dev"; 43 43 mainProgram = "osv-scanner"; 44 44 homepage = "https://github.com/google/osv-scanner"; 45 45 changelog = "https://github.com/google/osv-scanner/releases/tag/v${version}"; 46 - license = licenses.asl20; 47 - maintainers = with maintainers; [ 46 + license = lib.licenses.asl20; 47 + maintainers = with lib.maintainers; [ 48 48 stehessel 49 49 urandom 50 50 ];
+2 -2
pkgs/by-name/ot/otel-cli/package.nix
··· 39 39 40 40 passthru.updateScript = nix-update-script { }; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 homepage = "https://github.com/equinix-labs/otel-cli"; 44 44 description = "Command-line tool for sending OpenTelemetry traces"; 45 45 changelog = "https://github.com/equinix-labs/otel-cli/releases/tag/v${version}"; 46 - license = licenses.asl20; 46 + license = lib.licenses.asl20; 47 47 maintainers = with lib.maintainers; [ 48 48 emattiza 49 49 urandom
+3 -3
pkgs/by-name/ot/otel-desktop-viewer/package.nix
··· 39 39 command = "otel-desktop-viewer --version"; 40 40 }; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 changelog = "https://github.com/CtrlSpice/otel-desktop-viewer/releases/tag/v${version}"; 44 44 description = "Receive & visualize OpenTelemtry traces locally within one CLI tool"; 45 45 homepage = "https://github.com/CtrlSpice/otel-desktop-viewer"; 46 - license = licenses.asl20; 47 - maintainers = with maintainers; [ gaelreyrol ]; 46 + license = lib.licenses.asl20; 47 + maintainers = with lib.maintainers; [ gaelreyrol ]; 48 48 mainProgram = "otel-desktop-viewer"; 49 49 }; 50 50 }
+4 -4
pkgs/by-name/ot/otpclient/package.nix
··· 51 51 zbar 52 52 ]; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 description = "Highly secure and easy to use OTP client written in C/GTK that supports both TOTP and HOTP"; 56 56 homepage = "https://github.com/paolostivanin/OTPClient"; 57 57 changelog = "https://github.com/paolostivanin/OTPClient/releases/tag/v${version}"; 58 - license = licenses.gpl3Only; 59 - maintainers = with maintainers; [ alexbakker ]; 60 - platforms = platforms.linux; 58 + license = lib.licenses.gpl3Only; 59 + maintainers = with lib.maintainers; [ alexbakker ]; 60 + platforms = lib.platforms.linux; 61 61 }; 62 62 }
+3 -3
pkgs/by-name/ot/ots/package.nix
··· 22 22 "-X main.buildSource=nix" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Share end-to-end encrypted secrets with others via a one-time URL"; 27 27 mainProgram = "ots"; 28 28 homepage = "https://ots.sniptt.com"; 29 29 changelog = "https://github.com/sniptt-official/ots/releases/tag/v${version}"; 30 - license = licenses.asl20; 31 - maintainers = with maintainers; [ elliot ]; 30 + license = lib.licenses.asl20; 31 + maintainers = with lib.maintainers; [ elliot ]; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/ov/ov/package.nix
··· 68 68 }; 69 69 }; 70 70 71 - meta = with lib; { 71 + meta = { 72 72 description = "Feature-rich terminal-based text viewer"; 73 73 homepage = "https://noborus.github.io/ov"; 74 74 changelog = "https://github.com/noborus/ov/releases/tag/v${version}"; 75 - license = licenses.mit; 76 - maintainers = with maintainers; [ 75 + license = lib.licenses.mit; 76 + maintainers = with lib.maintainers; [ 77 77 farcaller 78 78 figsoda 79 79 ];
+4 -4
pkgs/by-name/ov/overskride/package.nix
··· 77 77 glib-compile-schemas $out/share/gsettings-schemas/${name}-${version}/glib-2.0/schemas 78 78 ''; 79 79 80 - meta = with lib; { 80 + meta = { 81 81 description = "Bluetooth and Obex client that is straight to the point, DE/WM agnostic, and beautiful"; 82 82 homepage = "https://github.com/${owner}/${name}"; 83 83 changelog = "https://github.com/${owner}/${name}/blob/v${version}/CHANGELOG.md"; 84 - license = licenses.gpl3Only; 84 + license = lib.licenses.gpl3Only; 85 85 mainProgram = name; 86 - maintainers = with maintainers; [ mrcjkb ]; 87 - platforms = platforms.linux; 86 + maintainers = with lib.maintainers; [ mrcjkb ]; 87 + platforms = lib.platforms.linux; 88 88 }; 89 89 90 90 }
+4 -4
pkgs/by-name/ov/oversteer/package.nix
··· 95 95 96 96 patches = [ ]; 97 97 98 - meta = with lib; { 98 + meta = { 99 99 homepage = "https://github.com/berarma/oversteer"; 100 100 changelog = "https://github.com/berarma/oversteer/releases/tag/${version}"; 101 101 description = "Steering Wheel Manager for Linux"; 102 102 mainProgram = "oversteer"; 103 - license = licenses.gpl3Plus; 104 - maintainers = [ maintainers.srounce ]; 105 - platforms = platforms.unix; 103 + license = lib.licenses.gpl3Plus; 104 + maintainers = [ lib.maintainers.srounce ]; 105 + platforms = lib.platforms.unix; 106 106 }; 107 107 }
+3 -3
pkgs/by-name/ox/ox/package.nix
··· 31 31 updateScript = nix-update-script { }; 32 32 }; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Independent Rust text editor that runs in your terminal"; 36 36 homepage = "https://github.com/curlpipe/ox"; 37 37 changelog = "https://github.com/curlpipe/ox/releases/tag/${version}"; 38 - license = licenses.gpl2Only; 39 - maintainers = with maintainers; [ 38 + license = lib.licenses.gpl2Only; 39 + maintainers = with lib.maintainers; [ 40 40 moni 41 41 kachick 42 42 ];
+3 -3
pkgs/by-name/pf/pfetch-rs/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-36MjBzSzEOVaSnd6dTqYnV+Pi+5EDoUskkYsvYMGrgg="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Rewrite of the pfetch system information tool in Rust"; 23 23 homepage = "https://github.com/Gobidev/pfetch-rs"; 24 24 changelog = "https://github.com/Gobidev/pfetch-rs/releases/tag/v${version}"; 25 - license = licenses.mit; 26 - maintainers = with maintainers; [ gobidev ]; 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ gobidev ]; 27 27 mainProgram = "pfetch"; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/pk/pkger/package.nix
··· 20 20 21 21 doCheck = false; 22 22 23 - meta = with lib; { 23 + meta = { 24 24 description = "Embed static files in Go binaries (replacement for gobuffalo/packr)"; 25 25 mainProgram = "pkger"; 26 26 homepage = "https://github.com/markbates/pkger"; 27 27 changelog = "https://github.com/markbates/pkger/releases/tag/v${version}"; 28 - license = licenses.mit; 29 - maintainers = with maintainers; [ flokli ]; 28 + license = lib.licenses.mit; 29 + maintainers = with lib.maintainers; [ flokli ]; 30 30 }; 31 31 }
+3 -3
pkgs/by-name/pk/pkgtop/package.nix
··· 21 21 mv $out/bin/{cmd,pkgtop} 22 22 ''; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 description = "Interactive package manager and resource monitor designed for the GNU/Linux"; 26 26 homepage = "https://github.com/orhun/pkgtop"; 27 27 changelog = "https://github.com/orhun/pkgtop/releases/tag/${version}"; 28 - license = licenses.gpl3Only; 29 - maintainers = with maintainers; [ figsoda ]; 28 + license = lib.licenses.gpl3Only; 29 + maintainers = with lib.maintainers; [ figsoda ]; 30 30 mainProgram = "pkgtop"; 31 31 }; 32 32 }
+5 -5
pkgs/by-name/pm/pmacct/package.nix
··· 77 77 }; 78 78 }; 79 79 80 - meta = with lib; { 80 + meta = { 81 81 description = "Small set of multi-purpose passive network monitoring tools"; 82 82 longDescription = '' 83 83 pmacct is a small set of multi-purpose passive network monitoring tools 84 84 [NetFlow IPFIX sFlow libpcap BGP BMP RPKI IGP Streaming Telemetry] 85 85 ''; 86 86 homepage = "http://www.pmacct.net/"; 87 - changelog = "https://github.com/pmacct/pmacct/blob/v${version}/ChangeLog"; 88 - license = licenses.gpl2Plus; 89 - maintainers = with maintainers; [ _0x4A6F ]; 90 - platforms = platforms.unix; 87 + changelog = "https://github.com/pmacct/pmacct/blob/v${finalAttrs.version}/ChangeLog"; 88 + license = lib.licenses.gpl2Plus; 89 + maintainers = with lib.maintainers; [ _0x4A6F ]; 90 + platforms = lib.platforms.unix; 91 91 }; 92 92 })
+4 -4
pkgs/by-name/pn/pngpaste/package.nix
··· 22 22 cp pngpaste $out/bin 23 23 ''; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Paste image files from clipboard to file on MacOS"; 27 27 longDescription = '' 28 28 Paste PNG into files on MacOS, much like pbpaste does for text. ··· 33 33 ''; 34 34 homepage = "https://github.com/jcsalterego/pngpaste"; 35 35 changelog = "https://github.com/jcsalterego/pngpaste/raw/${version}/CHANGELOG.md"; 36 - platforms = platforms.darwin; 37 - license = licenses.bsd2; 38 - maintainers = with maintainers; [ samw ]; 36 + platforms = lib.platforms.darwin; 37 + license = lib.licenses.bsd2; 38 + maintainers = with lib.maintainers; [ samw ]; 39 39 }; 40 40 }
+4 -4
pkgs/by-name/pn/pngquant/package.nix
··· 45 45 install -Dpm0444 pngquant.1 $man/share/man/man1/pngquant.1 46 46 ''; 47 47 48 - meta = with lib; { 48 + meta = { 49 49 homepage = "https://pngquant.org/"; 50 50 description = "Tool to convert 24/32-bit RGBA PNGs to 8-bit palette with alpha channel preserved"; 51 51 changelog = "https://github.com/kornelski/pngquant/raw/${version}/CHANGELOG"; 52 - platforms = platforms.unix; 53 - license = with licenses; [ 52 + platforms = lib.platforms.unix; 53 + license = with lib.licenses; [ 54 54 gpl3Plus 55 55 hpnd 56 56 bsd2 57 57 ]; 58 58 mainProgram = "pngquant"; 59 - maintainers = [ ]; 59 + maintainers = with lib.maintainers; [ ]; 60 60 }; 61 61 }
+3 -3
pkgs/by-name/ps/pscale/package.nix
··· 44 44 package = pscale; 45 45 }; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "CLI for PlanetScale Database"; 49 49 mainProgram = "pscale"; 50 50 changelog = "https://github.com/planetscale/cli/releases/tag/v${version}"; 51 51 homepage = "https://www.planetscale.com/"; 52 - license = licenses.asl20; 53 - maintainers = with maintainers; [ 52 + license = lib.licenses.asl20; 53 + maintainers = with lib.maintainers; [ 54 54 pimeys 55 55 kashw2 56 56 ];
+3 -3
pkgs/by-name/ps/psudohash/package.nix
··· 31 31 runHook postInstall 32 32 ''; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Password list generator for orchestrating brute force attacks and cracking hashes"; 36 36 homepage = "https://github.com/t3l3machus/psudohash"; 37 37 changelog = "https://github.com/t3l3machus/psudohash/releases/tag/v${version}"; 38 - license = licenses.mit; 39 - maintainers = with maintainers; [ exploitoverload ]; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ exploitoverload ]; 40 40 mainProgram = "psudohash"; 41 41 }; 42 42 }
+4 -4
pkgs/by-name/pu/public-sans/package.nix
··· 23 23 runHook postInstall 24 24 ''; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "Strong, neutral, principles-driven, open source typeface for text or display"; 28 28 homepage = "https://public-sans.digital.gov/"; 29 29 changelog = "https://github.com/uswds/public-sans/raw/v${version}/FONTLOG.txt"; 30 - license = licenses.ofl; 31 - maintainers = [ ]; 32 - platforms = platforms.all; 30 + license = lib.licenses.ofl; 31 + maintainers = with lib.maintainers; [ ]; 32 + platforms = lib.platforms.all; 33 33 }; 34 34 }
+2 -2
pkgs/by-name/pu/publii/package.nix
··· 91 91 --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ udev ]} 92 92 ''; 93 93 94 - meta = with lib; { 94 + meta = { 95 95 description = "Static Site CMS with GUI to build privacy-focused SEO-friendly website"; 96 96 mainProgram = "Publii"; 97 97 longDescription = '' ··· 101 101 ''; 102 102 homepage = "https://getpublii.com"; 103 103 changelog = "https://github.com/getpublii/publii/releases/tag/v${version}"; 104 - license = licenses.gpl3Only; 104 + license = lib.licenses.gpl3Only; 105 105 maintainers = with lib.maintainers; [ 106 106 urandom 107 107 sebtm
+3 -3
pkgs/by-name/pu/pubs/package.nix
··· 71 71 "pubs" 72 72 ]; 73 73 74 - meta = with lib; { 74 + meta = { 75 75 description = "Command-line bibliography manager"; 76 76 mainProgram = "pubs"; 77 77 homepage = "https://github.com/pubs/pubs"; 78 78 changelog = "https://github.com/pubs/pubs/blob/v${version}/changelog.md"; 79 - license = licenses.lgpl3Only; 80 - maintainers = with maintainers; [ 79 + license = lib.licenses.lgpl3Only; 80 + maintainers = with lib.maintainers; [ 81 81 dotlambda 82 82 ]; 83 83 };
+3 -3
pkgs/by-name/pu/pueue/package.nix
··· 46 46 installShellCompletion pueue.{bash,fish} _pueue 47 47 ''; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 homepage = "https://github.com/Nukesor/pueue"; 51 51 description = "Daemon for managing long running shell commands"; 52 52 longDescription = '' ··· 61 61 processed, even if you no longer have any active ssh sessions. 62 62 ''; 63 63 changelog = "https://github.com/Nukesor/pueue/blob/v${version}/CHANGELOG.md"; 64 - license = licenses.mit; 65 - maintainers = with maintainers; [ sarcasticadmin ]; 64 + license = lib.licenses.mit; 65 + maintainers = with lib.maintainers; [ sarcasticadmin ]; 66 66 }; 67 67 }
+3 -3
pkgs/by-name/pu/pur/package.nix
··· 30 30 "test_no_arguments_and_no_requirements_file" 31 31 ]; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "Python library for update and track the requirements"; 35 35 homepage = "https://github.com/alanhamlett/pip-update-requirements"; 36 36 changelog = "https://github.com/alanhamlett/pip-update-requirements/blob/${version}/HISTORY.rst"; 37 - license = licenses.bsd2; 38 - maintainers = with maintainers; [ fab ]; 37 + license = lib.licenses.bsd2; 38 + maintainers = with lib.maintainers; [ fab ]; 39 39 mainProgram = "pur"; 40 40 }; 41 41 }
+4 -4
pkgs/by-name/pw/pw-volume/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-MQ21pM8aSA/OnxGPVSEVVM6yF0CeX1T0VYN27tqZru8="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Basic interface to PipeWire volume controls"; 23 23 homepage = "https://github.com/smasher164/pw-volume"; 24 24 changelog = "https://github.com/smasher164/pw-volume/releases/tag/v${version}"; 25 - license = licenses.mit; 26 - maintainers = with maintainers; [ 25 + license = lib.licenses.mit; 26 + maintainers = with lib.maintainers; [ 27 27 astro 28 28 figsoda 29 29 ]; 30 - platforms = platforms.linux; 30 + platforms = lib.platforms.linux; 31 31 mainProgram = "pw-volume"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/pw/pwdsafety/package.nix
··· 22 22 "-s" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Command line tool checking password safety"; 27 27 homepage = "https://github.com/edoardottt/pwdsafety"; 28 28 changelog = "https://github.com/edoardottt/pwdsafety/releases/tag/v${version}"; 29 - license = with licenses; [ gpl3Plus ]; 30 - maintainers = with maintainers; [ fab ]; 29 + license = with lib.licenses; [ gpl3Plus ]; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "pwdsafety"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/pw/pwncat/package.nix
··· 19 19 # Tests requires to start containers 20 20 doCheck = false; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "TCP/UDP communication suite"; 24 24 homepage = "https://pwncat.org/"; 25 25 changelog = "https://github.com/cytopia/pwncat/releases/tag/v${version}"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ fab ]; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ fab ]; 28 28 mainProgram = "pwncat"; 29 29 }; 30 30 }
+3 -3
pkgs/by-name/qo/qovery-cli/package.nix
··· 34 34 command = "HOME=$(mktemp -d); ${pname} version"; 35 35 }; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Qovery Command Line Interface"; 39 39 homepage = "https://github.com/Qovery/qovery-cli"; 40 40 changelog = "https://github.com/Qovery/qovery-cli/releases/tag/v${version}"; 41 - license = with licenses; [ asl20 ]; 42 - maintainers = with maintainers; [ fab ]; 41 + license = with lib.licenses; [ asl20 ]; 42 + maintainers = with lib.maintainers; [ fab ]; 43 43 mainProgram = "qovery-cli"; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/rb/rbspy/package.nix
··· 57 57 58 58 passthru.updateScript = nix-update-script { }; 59 59 60 - meta = with lib; { 60 + meta = { 61 61 homepage = "https://rbspy.github.io/"; 62 62 description = "Sampling CPU Profiler for Ruby"; 63 63 mainProgram = "rbspy"; 64 64 changelog = "https://github.com/rbspy/rbspy/releases/tag/v${version}"; 65 - license = licenses.mit; 66 - maintainers = with maintainers; [ viraptor ]; 67 - platforms = platforms.linux ++ platforms.darwin; 65 + license = lib.licenses.mit; 66 + maintainers = with lib.maintainers; [ viraptor ]; 67 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 68 68 }; 69 69 }
+3 -3
pkgs/by-name/rb/rbw/package.nix
··· 73 73 --replace pass ${pass}/bin/pass 74 74 ''; 75 75 76 - meta = with lib; { 76 + meta = { 77 77 description = "Unofficial command line client for Bitwarden"; 78 78 homepage = "https://crates.io/crates/rbw"; 79 79 changelog = "https://git.tozt.net/rbw/plain/CHANGELOG.md?id=${version}"; 80 - license = licenses.mit; 81 - maintainers = with maintainers; [ albakham ]; 80 + license = lib.licenses.mit; 81 + maintainers = with lib.maintainers; [ albakham ]; 82 82 mainProgram = "rbw"; 83 83 }; 84 84 }
+3 -3
pkgs/by-name/rh/rhoas/package.nix
··· 44 44 command = "HOME=$TMP rhoas version"; 45 45 }; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Command Line Interface for Red Hat OpenShift Application Services"; 49 - license = licenses.asl20; 49 + license = lib.licenses.asl20; 50 50 homepage = "https://github.com/redhat-developer/app-services-cli"; 51 51 changelog = "https://github.com/redhat-developer/app-services-cli/releases/v${version}"; 52 - maintainers = with maintainers; [ stehessel ]; 52 + maintainers = with lib.maintainers; [ stehessel ]; 53 53 mainProgram = "rhoas"; 54 54 }; 55 55 }
+3 -3
pkgs/by-name/rk/rke/package.nix
··· 25 25 "-X=main.VERSION=v${version}" 26 26 ]; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 homepage = "https://github.com/rancher/rke"; 30 30 description = "Extremely simple, lightning fast Kubernetes distribution that runs entirely within containers"; 31 31 mainProgram = "rke"; 32 32 changelog = "https://github.com/rancher/rke/releases/tag/v${version}"; 33 - license = licenses.asl20; 34 - maintainers = with maintainers; [ urandom ]; 33 + license = lib.licenses.asl20; 34 + maintainers = with lib.maintainers; [ urandom ]; 35 35 }; 36 36 }
+4 -4
pkgs/by-name/rk/rkvm/package.nix
··· 42 42 inherit (nixosTests) rkvm; 43 43 }; 44 44 45 - meta = with lib; { 45 + meta = { 46 46 description = "Virtual KVM switch for Linux machines"; 47 47 homepage = "https://github.com/htrefil/rkvm"; 48 48 changelog = "https://github.com/htrefil/rkvm/releases/tag/${version}"; 49 - license = licenses.mit; 50 - platforms = platforms.linux; 51 - maintainers = [ ]; 49 + license = lib.licenses.mit; 50 + platforms = lib.platforms.linux; 51 + maintainers = with lib.maintainers; [ ]; 52 52 }; 53 53 }
+3 -3
pkgs/by-name/rm/rmapi/package.nix
··· 19 19 20 20 doCheck = false; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "Go app that allows access to the ReMarkable Cloud API programmatically"; 24 24 homepage = "https://github.com/ddvk/rmapi"; 25 25 changelog = "https://github.com/ddvk/rmapi/blob/v${version}/CHANGELOG.md"; 26 - license = licenses.agpl3Only; 27 - maintainers = [ maintainers.nickhu ]; 26 + license = lib.licenses.agpl3Only; 27 + maintainers = [ lib.maintainers.nickhu ]; 28 28 mainProgram = "rmapi"; 29 29 }; 30 30 }
+4 -4
pkgs/by-name/rn/rng-tools/package.nix
··· 104 104 runHook postInstallCheck 105 105 ''; 106 106 107 - meta = with lib; { 107 + meta = { 108 108 description = "Random number generator daemon"; 109 109 homepage = "https://github.com/nhorman/rng-tools"; 110 110 changelog = "https://github.com/nhorman/rng-tools/releases/tag/v${version}"; 111 - license = licenses.gpl2Plus; 112 - platforms = platforms.linux; 113 - maintainers = with maintainers; [ 111 + license = lib.licenses.gpl2Plus; 112 + platforms = lib.platforms.linux; 113 + maintainers = with lib.maintainers; [ 114 114 johnazoidberg 115 115 c0bw3b 116 116 ];
+2 -2
pkgs/by-name/rn/rnm/package.nix
··· 24 24 pcre2 25 25 ]; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 homepage = "https://neurobin.org/projects/softwares/unix/rnm/"; 29 29 description = "Bulk rename utility"; 30 30 changelog = "https://github.com/neurobin/rnm/blob/${version}/ChangeLog"; 31 31 platforms = lib.platforms.all; 32 - license = licenses.gpl3Only; 32 + license = lib.licenses.gpl3Only; 33 33 mainProgram = "rnm"; 34 34 }; 35 35 }
+3 -3
pkgs/by-name/rn/rnr/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-lXo3BECHpiNMRMgd4XZy+b8QHbE0TZ5/P4cz+SgwqsY="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Command-line tool to batch rename files and directories"; 23 23 mainProgram = "rnr"; 24 24 homepage = "https://github.com/ismaelgv/rnr"; 25 25 changelog = "https://github.com/ismaelgv/rnr/blob/v${version}/CHANGELOG.md"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ figsoda ]; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ figsoda ]; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/rt/rtrtr/package.nix
··· 22 22 23 23 buildNoDefaultFeatures = true; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "RPKI data proxy"; 27 27 longDescription = '' 28 28 TRTR is an RPKI data proxy, designed to collect Validated ROA Payloads ··· 34 34 ''; 35 35 homepage = "https://github.com/NLnetLabs/rtrtr"; 36 36 changelog = "https://github.com/NLnetLabs/rtrtr/blob/v${version}/Changelog.md"; 37 - license = licenses.bsd3; 38 - maintainers = with maintainers; [ steamwalker ]; 37 + license = lib.licenses.bsd3; 38 + maintainers = with lib.maintainers; [ steamwalker ]; 39 39 mainProgram = "rtrtr"; 40 40 }; 41 41 }
+4 -4
pkgs/by-name/s3/s3fs/package.nix
··· 40 40 ln -s $out/bin/s3fs $out/bin/mount.s3fs 41 41 ''; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Mount an S3 bucket as filesystem through FUSE"; 45 45 homepage = "https://github.com/s3fs-fuse/s3fs-fuse"; 46 46 changelog = "https://github.com/s3fs-fuse/s3fs-fuse/raw/v${version}/ChangeLog"; 47 - maintainers = [ ]; 48 - license = licenses.gpl2Only; 49 - platforms = platforms.unix; 47 + maintainers = with lib.maintainers; [ ]; 48 + license = lib.licenses.gpl2Only; 49 + platforms = lib.platforms.unix; 50 50 }; 51 51 }
+3 -3
pkgs/by-name/s3/s3proxy/package.nix
··· 33 33 --add-flags "-jar $out/share/s3proxy/s3proxy-${version}-jar-with-dependencies.jar" 34 34 ''; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 description = "Access other storage backends via the S3 API"; 38 38 mainProgram = "s3proxy"; 39 39 homepage = "https://github.com/gaul/s3proxy"; 40 40 changelog = "https://github.com/gaul/s3proxy/releases/tag/s3proxy-${version}"; 41 - license = licenses.asl20; 42 - maintainers = with maintainers; [ camelpunch ]; 41 + license = lib.licenses.asl20; 42 + maintainers = with lib.maintainers; [ camelpunch ]; 43 43 }; 44 44 }
+4 -4
pkgs/by-name/s3/s3ql/package.nix
··· 59 59 ]; 60 60 }; 61 61 62 - meta = with lib; { 62 + meta = { 63 63 description = "Full-featured file system for online data storage"; 64 64 homepage = "https://github.com/s3ql/s3ql/"; 65 65 changelog = "https://github.com/s3ql/s3ql/releases/tag/s3ql-${version}"; 66 - license = licenses.gpl3Only; 67 - maintainers = with maintainers; [ rushmorem ]; 68 - platforms = platforms.linux; 66 + license = lib.licenses.gpl3Only; 67 + maintainers = with lib.maintainers; [ rushmorem ]; 68 + platforms = lib.platforms.linux; 69 69 }; 70 70 }
+3 -3
pkgs/by-name/sb/sbom-utility/package.nix
··· 58 58 done 59 59 ''; 60 60 61 - meta = with lib; { 61 + meta = { 62 62 description = "Utility that provides an API platform for validating, querying and managing BOM data"; 63 63 homepage = "https://github.com/CycloneDX/sbom-utility"; 64 64 changelog = "https://github.com/CycloneDX/sbom-utility/releases/tag/v${version}"; 65 - license = licenses.asl20; 66 - maintainers = with maintainers; [ thillux ]; 65 + license = lib.licenses.asl20; 66 + maintainers = with lib.maintainers; [ thillux ]; 67 67 mainProgram = "sbom-utility"; 68 68 }; 69 69 }
+4 -4
pkgs/by-name/sf/sfrotz/package.nix
··· 46 46 buildPhase = "make sdl"; 47 47 installTargets = [ "install_sfrotz" ]; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "Interpreter for Infocom and other Z-Machine games (SDL interface)"; 51 51 mainProgram = "sfrotz"; 52 52 longDescription = '' ··· 65 65 ''; 66 66 homepage = "https://davidgriffith.gitlab.io/frotz/"; 67 67 changelog = "https://gitlab.com/DavidGriffith/frotz/-/raw/${version}/NEWS"; 68 - license = licenses.gpl2Plus; 69 - maintainers = with maintainers; [ ddelabru ]; 70 - platforms = platforms.linux; 68 + license = lib.licenses.gpl2Plus; 69 + maintainers = with lib.maintainers; [ ddelabru ]; 70 + platforms = lib.platforms.linux; 71 71 }; 72 72 }
+3 -3
pkgs/by-name/sf/sftpgo/package.nix
··· 48 48 49 49 passthru.tests = nixosTests.sftpgo; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 homepage = "https://github.com/drakkan/sftpgo"; 53 53 changelog = "https://github.com/drakkan/sftpgo/releases/tag/v${version}"; 54 54 description = "Fully featured and highly configurable SFTP server"; ··· 59 59 local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, 60 60 Google Cloud Storage, Azure Blob Storage, SFTP. 61 61 ''; 62 - license = with licenses; [ 62 + license = with lib.licenses; [ 63 63 agpl3Only 64 64 unfreeRedistributable 65 65 ]; # Software is AGPLv3, web UI is unfree 66 - maintainers = with maintainers; [ thenonameguy ]; 66 + maintainers = with lib.maintainers; [ thenonameguy ]; 67 67 mainProgram = "sftpgo"; 68 68 }; 69 69 }
+3 -3
pkgs/by-name/sk/skaffold/package.nix
··· 51 51 --zsh <($out/bin/skaffold completion zsh) 52 52 ''; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 homepage = "https://skaffold.dev/"; 56 56 changelog = "https://github.com/GoogleContainerTools/skaffold/releases/tag/v${version}"; 57 57 description = "Easy and Repeatable Kubernetes Development"; ··· 62 62 Skaffold handles the workflow for building, pushing and deploying your application. 63 63 It also provides building blocks and describe customizations for a CI/CD pipeline. 64 64 ''; 65 - license = licenses.asl20; 66 - maintainers = with maintainers; [ 65 + license = lib.licenses.asl20; 66 + maintainers = with lib.maintainers; [ 67 67 vdemeester 68 68 bryanasdev000 69 69 ];
+3 -3
pkgs/by-name/sk/skjold/package.nix
··· 53 53 54 54 pythonImportsCheck = [ "skjold" ]; 55 55 56 - meta = with lib; { 56 + meta = { 57 57 description = "Tool to Python dependencies against security advisory databases"; 58 58 homepage = "https://github.com/twu/skjold"; 59 59 changelog = "https://github.com/twu/skjold/releases/tag/v${version}"; 60 - license = licenses.mit; 61 - maintainers = with maintainers; [ fab ]; 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ fab ]; 62 62 }; 63 63 }
+4 -4
pkgs/by-name/sk/skrive/package.nix
··· 24 24 installManPage skrive.1 25 25 ''; 26 26 27 - meta = with lib; { 27 + meta = { 28 28 description = "Secure and sleek dosage logging for the terminal"; 29 29 homepage = "https://github.com/VanuPhantom/skrive"; 30 30 changelog = "https://github.com/VanuPhantom/skrive/releases/tag/v${version}"; 31 - license = licenses.mit; 32 - maintainers = with maintainers; [ freyacodes ]; 31 + license = lib.licenses.mit; 32 + maintainers = with lib.maintainers; [ freyacodes ]; 33 33 mainProgram = "skrive"; 34 - platforms = platforms.all; 34 + platforms = lib.platforms.all; 35 35 }; 36 36 }
+4 -4
pkgs/by-name/sn/sn0int/package.nix
··· 50 50 --zsh <($out/bin/sn0int completions zsh) 51 51 ''; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Semi-automatic OSINT framework and package manager"; 55 55 homepage = "https://github.com/kpcyrd/sn0int"; 56 56 changelog = "https://github.com/kpcyrd/sn0int/releases/tag/v${version}"; 57 - license = with licenses; [ gpl3Plus ]; 58 - maintainers = with maintainers; [ 57 + license = with lib.licenses; [ gpl3Plus ]; 58 + maintainers = with lib.maintainers; [ 59 59 fab 60 60 xrelkd 61 61 ]; 62 - platforms = platforms.linux ++ platforms.darwin; 62 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 63 63 mainProgram = "sn0int"; 64 64 }; 65 65 }
+4 -4
pkgs/by-name/sn/snappymail/package.nix
··· 31 31 cp ${includeScript} $out/include.php 32 32 ''; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Simple, modern & fast web-based email client"; 36 36 homepage = "https://snappymail.eu"; 37 37 changelog = "https://github.com/the-djmaze/snappymail/blob/v${version}/CHANGELOG.md"; 38 38 downloadPage = "https://github.com/the-djmaze/snappymail/releases"; 39 - license = licenses.agpl3Only; 40 - platforms = platforms.all; 41 - maintainers = with maintainers; [ mic92 ]; 39 + license = lib.licenses.agpl3Only; 40 + platforms = lib.platforms.all; 41 + maintainers = with lib.maintainers; [ mic92 ]; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/sn/sniffnet/package.nix
··· 77 77 } 78 78 ''; 79 79 80 - meta = with lib; { 80 + meta = { 81 81 description = "Cross-platform application to monitor your network traffic with ease"; 82 82 homepage = "https://github.com/gyulyvgc/sniffnet"; 83 83 changelog = "https://github.com/gyulyvgc/sniffnet/blob/v${version}/CHANGELOG.md"; 84 - license = with licenses; [ 84 + license = with lib.licenses; [ 85 85 mit # or 86 86 asl20 87 87 ]; 88 - maintainers = with maintainers; [ figsoda ]; 88 + maintainers = with lib.maintainers; [ figsoda ]; 89 89 mainProgram = "sniffnet"; 90 90 }; 91 91 }
+4 -4
pkgs/by-name/sn/snixembed/package.nix
··· 31 31 32 32 makeFlags = [ "PREFIX=$(out)" ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Proxy StatusNotifierItems as XEmbedded systemtray-spec icons"; 36 36 homepage = "https://git.sr.ht/~steef/snixembed"; 37 37 changelog = "https://git.sr.ht/~steef/snixembed/refs/${version}"; 38 - license = licenses.isc; 39 - platforms = platforms.unix; 40 - maintainers = with maintainers; [ figsoda ]; 38 + license = lib.licenses.isc; 39 + platforms = lib.platforms.unix; 40 + maintainers = with lib.maintainers; [ figsoda ]; 41 41 mainProgram = "snixembed"; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/sn/snowcat/package.nix
··· 21 21 "-w" 22 22 ]; 23 23 24 - meta = with lib; { 24 + meta = { 25 25 homepage = "https://github.com/praetorian-inc/snowcat"; 26 26 changelog = "https://github.com/praetorian-inc/snowcat/releases/tag/v${version}"; 27 27 description = "Tool to audit the istio service mesh"; ··· 35 35 with Istio, and begin to enumerate the required data. Optionally, you can 36 36 point snowcat at a directory containing Kubernets YAML files. 37 37 ''; 38 - license = licenses.asl20; 39 - maintainers = with maintainers; [ jk ]; 38 + license = lib.licenses.asl20; 39 + maintainers = with lib.maintainers; [ jk ]; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/sn/snowflake/package.nix
··· 19 19 20 20 vendorHash = "sha256-vopRE4B4WhncUdBfmBTzRbZzCU20vsHoNCYcPG4BGc0="; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "System to defeat internet censorship"; 24 24 homepage = "https://snowflake.torproject.org/"; 25 25 changelog = "https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/raw/v${version}/ChangeLog"; 26 - maintainers = with maintainers; [ 26 + maintainers = with lib.maintainers; [ 27 27 bbjubjub 28 28 yayayayaka 29 29 ]; 30 - license = licenses.bsd3; 30 + license = lib.licenses.bsd3; 31 31 }; 32 32 }
+3 -3
pkgs/by-name/sq/sqlboiler/package.nix
··· 32 32 33 33 doCheck = false; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Generate a Go ORM tailored to your database schema"; 37 37 homepage = "https://github.com/volatiletech/sqlboiler"; 38 38 changelog = "https://github.com/volatiletech/sqlboiler/releases/tag/v${version}"; 39 - license = licenses.bsd3; 40 - maintainers = with maintainers; [ mrityunjaygr8 ]; 39 + license = lib.licenses.bsd3; 40 + maintainers = with lib.maintainers; [ mrityunjaygr8 ]; 41 41 mainProgram = "sqlboiler"; 42 42 }; 43 43 }
+4 -4
pkgs/by-name/sq/sqlcipher/package.nix
··· 58 58 installManPage sqlcipher.1 59 59 ''; 60 60 61 - meta = with lib; { 61 + meta = { 62 62 changelog = "https://github.com/sqlcipher/sqlcipher/blob/v${version}/CHANGELOG.md"; 63 63 description = "SQLite extension that provides 256 bit AES encryption of database files"; 64 64 mainProgram = "sqlcipher"; 65 65 homepage = "https://www.zetetic.net/sqlcipher/"; 66 - license = licenses.bsd3; 67 - maintainers = [ ]; 68 - platforms = platforms.unix; 66 + license = lib.licenses.bsd3; 67 + maintainers = with lib.maintainers; [ ]; 68 + platforms = lib.platforms.unix; 69 69 }; 70 70 }
+3 -3
pkgs/by-name/sq/sqlfluff/package.nix
··· 68 68 69 69 pythonImportsCheck = [ "sqlfluff" ]; 70 70 71 - meta = with lib; { 71 + meta = { 72 72 description = "SQL linter and auto-formatter"; 73 73 homepage = "https://www.sqlfluff.com/"; 74 74 changelog = "https://github.com/sqlfluff/sqlfluff/blob/${version}/CHANGELOG.md"; 75 - license = with licenses; [ mit ]; 76 - maintainers = with maintainers; [ fab ]; 75 + license = with lib.licenses; [ mit ]; 76 + maintainers = with lib.maintainers; [ fab ]; 77 77 mainProgram = "sqlfluff"; 78 78 }; 79 79 }
+3 -3
pkgs/by-name/sq/sqlmc/package.nix
··· 34 34 35 35 pythonImportsCheck = [ "sqlmc" ]; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Tool to check URLs of a domain for SQL injections"; 39 39 homepage = "https://github.com/malvads/sqlmc"; 40 40 changelog = "https://github.com/malvads/sqlmc/releases/tag/${version}"; 41 - license = licenses.agpl3Only; 42 - maintainers = with maintainers; [ fab ]; 41 + license = lib.licenses.agpl3Only; 42 + maintainers = with lib.maintainers; [ fab ]; 43 43 mainProgram = "sqlmc"; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/sr/srisum/package.nix
··· 19 19 20 20 doInstallCheck = true; 21 21 22 - meta = with lib; { 22 + meta = { 23 23 description = "Command-line utility to compute and check subresource integrity hashes"; 24 24 homepage = "https://github.com/zkat/srisum-rs"; 25 25 changelog = "https://github.com/zkat/srisum-rs/raw/v${version}/CHANGELOG.md"; 26 - license = with licenses; [ asl20 ]; 27 - maintainers = with maintainers; [ pjjw ]; 28 - platforms = platforms.all; 26 + license = with lib.licenses; [ asl20 ]; 27 + maintainers = with lib.maintainers; [ pjjw ]; 28 + platforms = lib.platforms.all; 29 29 mainProgram = "srisum"; 30 30 }; 31 31 }
+4 -4
pkgs/by-name/t-/t-rex/package.nix
··· 31 31 openssl 32 32 ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Vector tile server specialized on publishing MVT tiles"; 36 36 homepage = "https://t-rex.tileserver.ch/"; 37 37 changelog = "https://github.com/t-rex-tileserver/t-rex/blob/v${version}/CHANGELOG.md"; 38 - license = licenses.mit; 39 - teams = [ teams.geospatial ]; 38 + license = lib.licenses.mit; 39 + teams = [ lib.teams.geospatial ]; 40 40 mainProgram = "t_rex"; 41 - platforms = platforms.unix; 41 + platforms = lib.platforms.unix; 42 42 broken = true; # see https://github.com/t-rex-tileserver/t-rex/issues/320 43 43 }; 44 44 }
+3 -3
pkgs/by-name/tf/tfsec/package.nix
··· 31 31 "cmd/tfsec-checkgen" 32 32 ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Static analysis powered security scanner for terraform code"; 36 36 homepage = "https://github.com/aquasecurity/tfsec"; 37 37 changelog = "https://github.com/aquasecurity/tfsec/releases/tag/v${version}"; 38 - license = licenses.mit; 39 - maintainers = with maintainers; [ 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ 40 40 fab 41 41 peterromfeldhk 42 42 ];
+3 -3
pkgs/by-name/tf/tftui/package.nix
··· 46 46 --add-flags "--disable-usage-tracking" 47 47 ''; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 description = "Textual UI to view and interact with Terraform state"; 51 51 homepage = "https://github.com/idoavrah/terraform-tui"; 52 52 changelog = "https://github.com/idoavrah/terraform-tui/releases/tag/v${version}"; 53 - license = licenses.asl20; 54 - teams = [ teams.bitnomial ]; 53 + license = lib.licenses.asl20; 54 + teams = [ lib.teams.bitnomial ]; 55 55 mainProgram = "tftui"; 56 56 }; 57 57 }
+3 -3
pkgs/by-name/to/tockloader/package.nix
··· 31 31 runHook postCheck 32 32 ''; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Tool for programming Tock onto hardware boards"; 36 36 mainProgram = "tockloader"; 37 37 homepage = "https://github.com/tock/tockloader"; 38 38 changelog = "https://github.com/tock/tockloader/releases/tag/v${version}"; 39 - license = licenses.mit; 40 - maintainers = [ ]; 39 + license = lib.licenses.mit; 40 + maintainers = with lib.maintainers; [ ]; 41 41 }; 42 42 }
+3 -3
pkgs/by-name/to/toolbox/package.nix
··· 51 51 install profile.d/toolbox.sh -Dt $out/share/profile.d 52 52 ''; 53 53 54 - meta = with lib; { 54 + meta = { 55 55 homepage = "https://containertoolbx.org"; 56 56 changelog = "https://github.com/containers/toolbox/releases/tag/${version}"; 57 57 description = "Tool for containerized command line environments on Linux"; 58 - license = licenses.asl20; 59 - maintainers = with maintainers; [ urandom ]; 58 + license = lib.licenses.asl20; 59 + maintainers = with lib.maintainers; [ urandom ]; 60 60 mainProgram = "toolbox"; 61 61 }; 62 62 }
+3 -3
pkgs/by-name/to/topgrade/package.nix
··· 41 41 installManPage topgrade.8 42 42 ''; 43 43 44 - meta = with lib; { 44 + meta = { 45 45 description = "Upgrade all the things"; 46 46 homepage = "https://github.com/topgrade-rs/topgrade"; 47 47 changelog = "https://github.com/topgrade-rs/topgrade/releases/tag/v${version}"; 48 - license = licenses.gpl3Only; 49 - maintainers = with maintainers; [ 48 + license = lib.licenses.gpl3Only; 49 + maintainers = with lib.maintainers; [ 50 50 SuperSandro2000 51 51 xyenon 52 52 ];
+5 -5
pkgs/by-name/to/tor-browser/package.nix
··· 353 353 }; 354 354 }; 355 355 356 - meta = with lib; { 356 + meta = { 357 357 description = "Privacy-focused browser routing traffic through the Tor network"; 358 358 mainProgram = "tor-browser"; 359 359 homepage = "https://www.torproject.org/"; 360 360 changelog = "https://gitweb.torproject.org/builders/tor-browser-build.git/plain/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt?h=maint-${version}"; 361 - platforms = attrNames sources; 362 - maintainers = with maintainers; [ 361 + platforms = lib.attrNames sources; 362 + maintainers = with lib.maintainers; [ 363 363 felschr 364 364 panicgh 365 365 joachifm ··· 368 368 # MPL2.0+, GPL+, &c. While it's not entirely clear whether 369 369 # the compound is "libre" in a strict sense (some components place certain 370 370 # restrictions on redistribution), it's free enough for our purposes. 371 - license = with licenses; [ 371 + license = with lib.licenses; [ 372 372 mpl20 373 373 lgpl21Plus 374 374 lgpl3Plus 375 375 free 376 376 ]; 377 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 377 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 378 378 }; 379 379 } 380 380 )
+4 -4
pkgs/by-name/to/totem/package.nix
··· 108 108 }; 109 109 }; 110 110 111 - meta = with lib; { 111 + meta = { 112 112 homepage = "https://apps.gnome.org/Totem/"; 113 113 changelog = "https://gitlab.gnome.org/GNOME/totem/-/blob/${version}/NEWS?ref_type=tags"; 114 114 description = "Movie player for the GNOME desktop based on GStreamer"; 115 - teams = [ teams.gnome ]; 116 - license = licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins 117 - platforms = platforms.linux; 115 + teams = [ lib.teams.gnome ]; 116 + license = lib.licenses.gpl2Plus; # with exception to allow use of non-GPL compatible plug-ins 117 + platforms = lib.platforms.linux; 118 118 # gst-inspect-1.0 is not smart enough for cross compiling 119 119 broken = stdenv.buildPlatform != stdenv.hostPlatform; 120 120 };
+4 -4
pkgs/by-name/ts/tsung/package.nix
··· 44 44 --set PERL5LIB "${perlPackages.makePerlPath [ perlPackages.TemplateToolkit ]}" 45 45 ''; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 homepage = "http://tsung.erlang-projects.org/"; 49 49 changelog = "https://github.com/processone/tsung/blob/v${version}/CHANGELOG.md"; 50 50 description = "High-performance benchmark framework for various protocols including HTTP, XMPP, LDAP, etc"; ··· 53 53 can currently be used to stress HTTP, WebDAV, SOAP, PostgreSQL, MySQL, 54 54 AMQP, MQTT, LDAP and Jabber/XMPP servers. 55 55 ''; 56 - license = licenses.gpl2Plus; 57 - maintainers = with maintainers; [ uskudnik ]; 58 - platforms = platforms.unix; 56 + license = lib.licenses.gpl2Plus; 57 + maintainers = with lib.maintainers; [ uskudnik ]; 58 + platforms = lib.platforms.unix; 59 59 }; 60 60 }
+3 -3
pkgs/by-name/tt/ttdl/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-dr/hT8mVUlO0pX/OGqIqPDevflNVPD88epLZsW772Os="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "CLI tool to manage todo lists in todo.txt format"; 23 23 homepage = "https://github.com/VladimirMarkelov/ttdl"; 24 24 changelog = "https://github.com/VladimirMarkelov/ttdl/blob/v${version}/changelog"; 25 - license = with licenses; [ mit ]; 26 - maintainers = with maintainers; [ _3JlOy-PYCCKUi ]; 25 + license = with lib.licenses; [ mit ]; 26 + maintainers = with lib.maintainers; [ _3JlOy-PYCCKUi ]; 27 27 mainProgram = "ttdl"; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/tv/tv/package.nix
··· 18 18 useFetchCargoVendor = true; 19 19 cargoHash = "sha256-pg8u+1C68ilg0uhszQnsN1bRbniJd39yQHujerQx+mI="; 20 20 21 - meta = with lib; { 21 + meta = { 22 22 description = "Format json into table view"; 23 23 mainProgram = "tv"; 24 24 homepage = "https://github.com/uzimaru0000/tv"; 25 25 changelog = "https://github.com/uzimaru0000/tv/blob/v${version}/CHANGELOG.md"; 26 - license = licenses.mit; 27 - maintainers = with maintainers; [ figsoda ]; 26 + license = lib.licenses.mit; 27 + maintainers = with lib.maintainers; [ figsoda ]; 28 28 }; 29 29 }
+3 -3
pkgs/by-name/tw/twspace-dl/package.nix
··· 28 28 29 29 pythonImportsCheck = [ "twspace_dl" ]; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Python module to download twitter spaces"; 33 33 homepage = "https://github.com/HoloArchivists/twspace-dl"; 34 34 changelog = "https://github.com/HoloArchivists/twspace-dl/releases/tag/${version}"; 35 - license = licenses.gpl2Only; 36 - maintainers = [ ]; 35 + license = lib.licenses.gpl2Only; 36 + maintainers = with lib.maintainers; [ ]; 37 37 mainProgram = "twspace_dl"; 38 38 }; 39 39 }
+3 -3
pkgs/by-name/tw/twtxt/package.nix
··· 35 35 "test_tweet_relative_datetime" 36 36 ]; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Decentralised, minimalist microblogging service for hackers"; 40 40 homepage = "https://github.com/buckket/twtxt"; 41 41 changelog = "https://github.com/buckket/twtxt/releases/tag/v${version}"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ siraben ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ siraben ]; 44 44 mainProgram = "twtxt"; 45 45 }; 46 46 }
+3 -3
pkgs/by-name/ty/typeshare/package.nix
··· 31 31 --zsh <($out/bin/typeshare completions zsh) 32 32 ''; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Command Line Tool for generating language files with typeshare"; 36 36 mainProgram = "typeshare"; 37 37 homepage = "https://github.com/1password/typeshare"; 38 38 changelog = "https://github.com/1password/typeshare/blob/v${version}/CHANGELOG.md"; 39 - license = with licenses; [ 39 + license = with lib.licenses; [ 40 40 asl20 # or 41 41 mit 42 42 ]; 43 - maintainers = with maintainers; [ figsoda ]; 43 + maintainers = with lib.maintainers; [ figsoda ]; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/ub/ubridge/package.nix
··· 44 44 updateScript = nix-update-script { }; 45 45 }; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Bridge for UDP tunnels, Ethernet, TAP, and VMnet interfaces"; 49 49 longDescription = '' 50 50 uBridge is a simple application to create user-land bridges between ··· 53 53 ''; 54 54 homepage = "https://github.com/GNS3/ubridge"; 55 55 changelog = "https://github.com/GNS3/ubridge/releases/tag/v${version}"; 56 - license = licenses.gpl3Plus; 56 + license = lib.licenses.gpl3Plus; 57 57 mainProgram = "ubridge"; 58 - maintainers = with maintainers; [ 58 + maintainers = with lib.maintainers; [ 59 59 primeos 60 60 anthonyroussel 61 61 ]; 62 - platforms = platforms.linux ++ platforms.darwin; 62 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 63 63 }; 64 64 }
+4 -4
pkgs/by-name/ur/uriparser/package.nix
··· 25 25 nativeCheckInputs = [ gtest ]; 26 26 doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 changelog = "https://github.com/uriparser/uriparser/blob/uriparser-${version}/ChangeLog"; 30 30 description = "Strictly RFC 3986 compliant URI parsing library"; 31 31 longDescription = '' ··· 33 33 API documentation is available on uriparser website. 34 34 ''; 35 35 homepage = "https://uriparser.github.io/"; 36 - license = licenses.bsd3; 37 - maintainers = with maintainers; [ bosu ]; 36 + license = lib.licenses.bsd3; 37 + maintainers = with lib.maintainers; [ bosu ]; 38 38 mainProgram = "uriparse"; 39 - platforms = platforms.unix; 39 + platforms = lib.platforms.unix; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/ur/url-parser/package.nix
··· 26 26 "main.BuildDate=1970-01-01" 27 27 ]; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Simple command-line URL parser"; 31 31 homepage = "https://github.com/thegeeklab/url-parser"; 32 32 changelog = "https://github.com/thegeeklab/url-parser/releases/tag/v${version}"; 33 - license = licenses.mit; 34 - maintainers = with maintainers; [ doronbehar ]; 33 + license = lib.licenses.mit; 34 + maintainers = with lib.maintainers; [ doronbehar ]; 35 35 mainProgram = "url-parser"; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/uw/uwhoisd/package.nix
··· 38 38 # Project has no tests 39 39 doCheck = false; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Universal WHOIS proxy server"; 43 43 homepage = "https://github.com/Lookyloo/uwhoisd"; 44 44 changelog = "https://github.com/Lookyloo/uwhoisd/blob/${version}/ChangeLog"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ fab ]; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ fab ]; 47 47 }; 48 48 }
+4 -4
pkgs/by-name/vc/vcsh/package.nix
··· 38 38 "man" 39 39 ]; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Version Control System for $HOME"; 43 43 homepage = "https://github.com/RichiH/vcsh"; 44 44 changelog = "https://github.com/RichiH/vcsh/blob/v${version}/changelog"; 45 - license = licenses.gpl2Plus; 46 - maintainers = with maintainers; [ 45 + license = lib.licenses.gpl2Plus; 46 + maintainers = with lib.maintainers; [ 47 47 ttuegel 48 48 alerque 49 49 ]; 50 - platforms = platforms.unix; 50 + platforms = lib.platforms.unix; 51 51 mainProgram = "vcsh"; 52 52 }; 53 53 }
+3 -3
pkgs/by-name/vh/vhs/package.nix
··· 52 52 --zsh <($out/bin/vhs completion zsh) 53 53 ''; 54 54 55 - meta = with lib; { 55 + meta = { 56 56 description = "Tool for generating terminal GIFs with code"; 57 57 mainProgram = "vhs"; 58 58 homepage = "https://github.com/charmbracelet/vhs"; 59 59 changelog = "https://github.com/charmbracelet/vhs/releases/tag/v${version}"; 60 - license = licenses.mit; 61 - maintainers = with maintainers; [ 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ 62 62 maaslalani 63 63 penguwin 64 64 ];
+4 -4
pkgs/by-name/vo/vouch-proxy/package.nix
··· 27 27 export VOUCH_ROOT=$PWD 28 28 ''; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 homepage = "https://github.com/vouch/vouch-proxy"; 32 32 description = "SSO and OAuth / OIDC login solution for NGINX using the auth_request module"; 33 33 changelog = "https://github.com/vouch/vouch-proxy/blob/v${version}/CHANGELOG.md"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ 36 36 leona 37 37 erictapen 38 38 ]; 39 - platforms = platforms.linux; 39 + platforms = lib.platforms.linux; 40 40 mainProgram = "vouch-proxy"; 41 41 }; 42 42 }
+3 -3
pkgs/by-name/vs/vscode-js-debug/package.nix
··· 74 74 fi 75 75 ''; 76 76 77 - meta = with lib; { 77 + meta = { 78 78 description = "DAP-compatible JavaScript debugger"; 79 79 longDescription = '' 80 80 This is a [DAP](https://microsoft.github.io/debug-adapter-protocol/)-based ··· 86 86 homepage = "https://github.com/microsoft/vscode-js-debug"; 87 87 changelog = "https://github.com/microsoft/vscode-js-debug/blob/v${version}/CHANGELOG.md"; 88 88 mainProgram = "js-debug"; 89 - license = licenses.mit; 90 - maintainers = with maintainers; [ zeorin ]; 89 + license = lib.licenses.mit; 90 + maintainers = with lib.maintainers; [ zeorin ]; 91 91 }; 92 92 }
+3 -3
pkgs/by-name/vt/vt-cli/package.nix
··· 23 23 24 24 subPackages = [ "vt" ]; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "VirusTotal Command Line Interface"; 28 28 homepage = "https://github.com/VirusTotal/vt-cli"; 29 29 changelog = "https://github.com/VirusTotal/vt-cli/releases/tag/${version}"; 30 - license = licenses.asl20; 30 + license = lib.licenses.asl20; 31 31 mainProgram = "vt"; 32 - maintainers = with maintainers; [ dit7ya ]; 32 + maintainers = with lib.maintainers; [ dit7ya ]; 33 33 }; 34 34 }
+3 -3
pkgs/by-name/vu/vultr-cli/package.nix
··· 33 33 --zsh <($out/bin/vultr-cli completion zsh) 34 34 ''; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 description = "Official command line tool for Vultr services"; 38 38 homepage = "https://github.com/vultr/vultr-cli"; 39 39 changelog = "https://github.com/vultr/vultr-cli/blob/v${version}/CHANGELOG.md"; 40 - license = licenses.asl20; 41 - maintainers = with maintainers; [ Br1ght0ne ]; 40 + license = lib.licenses.asl20; 41 + maintainers = with lib.maintainers; [ Br1ght0ne ]; 42 42 mainProgram = "vultr-cli"; 43 43 }; 44 44 }
+3 -3
pkgs/by-name/vu/vunnel/package.nix
··· 78 78 "test_parser" 79 79 ]; 80 80 81 - meta = with lib; { 81 + meta = { 82 82 description = "Tool for collecting vulnerability data from various sources"; 83 83 homepage = "https://github.com/anchore/vunnel"; 84 84 changelog = "https://github.com/anchore/vunnel/releases/tag/v${version}"; 85 - license = licenses.asl20; 86 - maintainers = with maintainers; [ fab ]; 85 + license = lib.licenses.asl20; 86 + maintainers = with lib.maintainers; [ fab ]; 87 87 mainProgram = "vunnel"; 88 88 }; 89 89 }
+4 -4
pkgs/by-name/w3/w3m/package.nix
··· 125 125 command = "w3m -version"; 126 126 }; 127 127 128 - meta = with lib; { 128 + meta = { 129 129 homepage = "https://w3m.sourceforge.net/"; 130 130 changelog = "https://github.com/tats/w3m/blob/v${version}/ChangeLog"; 131 131 description = "Text-mode web browser"; 132 - maintainers = with maintainers; [ anthonyroussel ]; 133 - platforms = platforms.unix; 134 - license = licenses.mit; 132 + maintainers = with lib.maintainers; [ anthonyroussel ]; 133 + platforms = lib.platforms.unix; 134 + license = lib.licenses.mit; 135 135 mainProgram = "w3m"; 136 136 }; 137 137 }
+4 -4
pkgs/by-name/wb/wbg/package.nix
··· 61 61 "-Wno-error=maybe-uninitialized" 62 62 ]; 63 63 64 - meta = with lib; { 64 + meta = { 65 65 description = "Wallpaper application for Wayland compositors"; 66 66 homepage = "https://codeberg.org/dnkl/wbg"; 67 67 changelog = "https://codeberg.org/dnkl/wbg/releases/tag/${version}"; 68 - license = licenses.isc; 69 - maintainers = with maintainers; [ ]; 70 - platforms = with platforms; linux; 68 + license = lib.licenses.isc; 69 + maintainers = with lib.maintainers; [ ]; 70 + platforms = with lib.platforms; linux; 71 71 mainProgram = "wbg"; 72 72 }; 73 73 }
+3 -3
pkgs/by-name/we/webanalyze/package.nix
··· 17 17 18 18 vendorHash = "sha256-XPOsC+HoLytgv1fhAaO5HYSvuOP6OhjLyOYTfiD64QI="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Tool to uncover technologies used on websites"; 22 22 homepage = "https://github.com/rverton/webanalyze"; 23 23 changelog = "https://github.com/rverton/webanalyze/releases/tag/v${version}"; 24 - license = licenses.mit; 25 - maintainers = with maintainers; [ fab ]; 24 + license = lib.licenses.mit; 25 + maintainers = with lib.maintainers; [ fab ]; 26 26 mainProgram = "webanalyze"; 27 27 }; 28 28 }
+4 -4
pkgs/by-name/we/websecprobe/package.nix
··· 28 28 29 29 pythonImportsCheck = [ "WebSecProbe" ]; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Web Security Assessment Tool"; 33 33 homepage = "https://github.com/spyboy-productions/WebSecProbe/"; 34 34 changelog = "https://github.com/spyboy-productions/WebSecProbe/releases/tag/${version}"; 35 - license = licenses.mit; 36 - maintainers = with maintainers; [ fab ]; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ fab ]; 37 37 mainProgram = "websecprobe"; 38 - platforms = platforms.linux; 38 + platforms = lib.platforms.linux; 39 39 }; 40 40 }
+3 -3
pkgs/by-name/we/websocat/package.nix
··· 53 53 54 54 doInstallCheck = true; 55 55 56 - meta = with lib; { 56 + meta = { 57 57 description = "Command-line client for WebSockets (like netcat/socat)"; 58 58 homepage = "https://github.com/vi/websocat"; 59 59 changelog = "https://github.com/vi/websocat/releases/tag/v${version}"; 60 - license = licenses.mit; 61 - maintainers = with maintainers; [ 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ 62 62 thoughtpolice 63 63 Br1ght0ne 64 64 ];
+3 -3
pkgs/by-name/we/websploit/package.nix
··· 32 32 "websploit" 33 33 ]; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "High level MITM framework"; 37 37 homepage = "https://github.com/f4rih/websploit"; 38 38 changelog = "https://github.com/f4rih/websploit/releases/tag/${version}"; 39 - license = licenses.mit; 40 - maintainers = with maintainers; [ emilytrau ]; 39 + license = lib.licenses.mit; 40 + maintainers = with lib.maintainers; [ emilytrau ]; 41 41 mainProgram = "websploit"; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/we/weggli/package.nix
··· 26 26 version = "weggli ${version}"; 27 27 }; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Weggli is a fast and robust semantic search tool for C and C++ codebases"; 31 31 homepage = "https://github.com/weggli-rs/weggli"; 32 32 changelog = "https://github.com/weggli-rs/weggli/releases/tag/v${version}"; 33 33 mainProgram = "weggli"; 34 - license = licenses.asl20; 35 - maintainers = with maintainers; [ 34 + license = lib.licenses.asl20; 35 + maintainers = with lib.maintainers; [ 36 36 arturcygan 37 37 mfrw 38 38 ];
+4 -4
pkgs/by-name/wf/wf-recorder/package.nix
··· 53 53 libgbm 54 54 ]; 55 55 56 - meta = with lib; { 56 + meta = { 57 57 description = "Utility program for screen recording of wlroots-based compositors"; 58 58 inherit (src.meta) homepage; 59 59 changelog = "https://github.com/ammen99/wf-recorder/releases/tag/v${version}"; 60 - license = licenses.mit; 61 - maintainers = with maintainers; [ dywedir ]; 62 - platforms = platforms.linux; 60 + license = lib.licenses.mit; 61 + maintainers = with lib.maintainers; [ dywedir ]; 62 + platforms = lib.platforms.linux; 63 63 mainProgram = "wf-recorder"; 64 64 }; 65 65 }
+3 -3
pkgs/by-name/wh/whatsapp-chat-exporter/package.nix
··· 27 27 vobject 28 28 ]; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 homepage = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter"; 32 32 description = "WhatsApp database parser"; 33 33 changelog = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter/releases/tag/${version}"; ··· 36 36 you the history of your WhatsApp conversations inHTML and JSON. Android 37 37 Backup Crypt12, Crypt14 and Crypt15 supported. 38 38 ''; 39 - license = licenses.mit; 39 + license = lib.licenses.mit; 40 40 mainProgram = "wtsexporter"; 41 - maintainers = with maintainers; [ 41 + maintainers = with lib.maintainers; [ 42 42 bbenno 43 43 EstebanMacanek 44 44 ];
+4 -4
pkgs/by-name/wi/widelands/package.nix
··· 92 92 installManPage ../xdg/widelands.6 93 93 ''; 94 94 95 - meta = with lib; { 95 + meta = { 96 96 description = "RTS with multiple-goods economy"; 97 97 homepage = "https://widelands.org/"; 98 98 longDescription = '' ··· 102 102 ''; 103 103 changelog = "https://github.com/widelands/widelands/releases/tag/v${version}"; 104 104 mainProgram = "widelands"; 105 - license = licenses.gpl2Plus; 106 - maintainers = with maintainers; [ 105 + license = lib.licenses.gpl2Plus; 106 + maintainers = with lib.maintainers; [ 107 107 raskin 108 108 jcumming 109 109 ]; 110 - platforms = platforms.linux ++ platforms.darwin; 110 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 111 111 hydraPlatforms = [ ]; 112 112 }; 113 113 }
+3 -3
pkgs/by-name/wi/wiki-tui/package.nix
··· 27 27 useFetchCargoVendor = true; 28 28 cargoHash = "sha256-Pe6mNbn4GFjhpFZeWMlaRt7Bj5BLiIy789hXWkII2ps="; 29 29 30 - meta = with lib; { 30 + meta = { 31 31 description = "Simple and easy to use Wikipedia Text User Interface"; 32 32 homepage = "https://github.com/builditluc/wiki-tui"; 33 33 changelog = "https://github.com/Builditluc/wiki-tui/releases/tag/v${version}"; 34 - license = licenses.mit; 35 - maintainers = with maintainers; [ 34 + license = lib.licenses.mit; 35 + maintainers = with lib.maintainers; [ 36 36 lom 37 37 builditluc 38 38 matthiasbeyer
+3 -3
pkgs/by-name/wi/win2xcur/package.nix
··· 20 20 wand 21 21 ]; 22 22 23 - meta = with lib; { 23 + meta = { 24 24 description = "Tools that convert cursors between the Windows (*.cur, *.ani) and Xcursor format"; 25 25 homepage = "https://github.com/quantum5/win2xcur"; 26 26 changelog = "https://github.com/quantum5/win2xcur/releases/tag/v${version}"; 27 - license = licenses.gpl3Plus; 28 - maintainers = with maintainers; [ teatwig ]; 27 + license = lib.licenses.gpl3Plus; 28 + maintainers = with lib.maintainers; [ teatwig ]; 29 29 }; 30 30 }
+3 -3
pkgs/by-name/wi/wishlist/package.nix
··· 25 25 "-X=main.Version=${version}" 26 26 ]; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Single entrypoint for multiple SSH endpoints"; 30 30 homepage = "https://github.com/charmbracelet/wishlist"; 31 31 changelog = "https://github.com/charmbracelet/wishlist/releases/tag/v${version}"; 32 - license = licenses.mit; 33 - maintainers = with maintainers; [ 32 + license = lib.licenses.mit; 33 + maintainers = with lib.maintainers; [ 34 34 caarlos0 35 35 penguwin 36 36 ];
+3 -3
pkgs/by-name/wi/witness/package.nix
··· 52 52 version = "v${version}"; 53 53 }; 54 54 55 - meta = with lib; { 55 + meta = { 56 56 description = "Pluggable framework for software supply chain security. Witness prevents tampering of build materials and verifies the integrity of the build process from source to target"; 57 57 longDescription = '' 58 58 Witness prevents tampering of build materials and verifies the integrity ··· 66 66 mainProgram = "witness"; 67 67 homepage = "https://github.com/testifysec/witness"; 68 68 changelog = "https://github.com/testifysec/witness/releases/tag/v${version}"; 69 - license = licenses.asl20; 70 - maintainers = with maintainers; [ 69 + license = lib.licenses.asl20; 70 + maintainers = with lib.maintainers; [ 71 71 fkautz 72 72 jk 73 73 ];
+4 -4
pkgs/by-name/wl/wl-clipboard-rs/package.nix
··· 75 75 --zsh target/completions/_wl-paste 76 76 ''; 77 77 78 - meta = with lib; { 78 + meta = { 79 79 description = "Command-line copy/paste utilities for Wayland, written in Rust"; 80 80 homepage = "https://github.com/YaLTeR/wl-clipboard-rs"; 81 81 changelog = "https://github.com/YaLTeR/wl-clipboard-rs/blob/v${version}/CHANGELOG.md"; 82 - platforms = platforms.linux; 83 - license = with licenses; [ 82 + platforms = lib.platforms.linux; 83 + license = with lib.licenses; [ 84 84 asl20 85 85 mit 86 86 ]; 87 87 mainProgram = "wl-clip"; 88 - maintainers = with maintainers; [ 88 + maintainers = with lib.maintainers; [ 89 89 thiagokokada 90 90 donovanglover 91 91 ];
+4 -4
pkgs/by-name/wl/wlsunset/package.nix
··· 38 38 wayland-protocols 39 39 ]; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Day/night gamma adjustments for Wayland"; 43 43 longDescription = '' 44 44 Day/night gamma adjustments for Wayland compositors supporting ··· 46 46 ''; 47 47 homepage = "https://sr.ht/~kennylevinsen/wlsunset/"; 48 48 changelog = "https://git.sr.ht/~kennylevinsen/wlsunset/refs/${version}"; 49 - license = licenses.mit; 50 - platforms = platforms.linux; 51 - maintainers = with maintainers; [ primeos ]; 49 + license = lib.licenses.mit; 50 + platforms = lib.platforms.linux; 51 + maintainers = with lib.maintainers; [ primeos ]; 52 52 mainProgram = "wlsunset"; 53 53 }; 54 54 }
+4 -4
pkgs/by-name/wo/wob/package.nix
··· 45 45 46 46 mesonFlags = lib.optional stdenv.hostPlatform.isLinux "-Dseccomp=enabled"; 47 47 48 - meta = with lib; { 48 + meta = { 49 49 inherit (src.meta) homepage; 50 50 description = "Lightweight overlay bar for Wayland"; 51 51 longDescription = '' ··· 53 53 inspired by xob. 54 54 ''; 55 55 changelog = "https://github.com/francma/wob/releases/tag/${version}"; 56 - license = licenses.isc; 57 - maintainers = with maintainers; [ primeos ]; 58 - platforms = platforms.linux; 56 + license = lib.licenses.isc; 57 + maintainers = with lib.maintainers; [ primeos ]; 58 + platforms = lib.platforms.linux; 59 59 mainProgram = "wob"; 60 60 }; 61 61 }
+3 -3
pkgs/by-name/wo/woodpecker-plugin-git/package.nix
··· 32 32 33 33 passthru.tests.version = testers.testVersion { package = woodpecker-plugin-git; }; 34 34 35 - meta = with lib; { 35 + meta = { 36 36 description = "Woodpecker plugin for cloning Git repositories"; 37 37 homepage = "https://woodpecker-ci.org/"; 38 38 changelog = "https://github.com/woodpecker-ci/plugin-git/releases/tag/${version}"; 39 - license = licenses.asl20; 39 + license = lib.licenses.asl20; 40 40 mainProgram = "plugin-git"; 41 - maintainers = with maintainers; [ ambroisie ]; 41 + maintainers = with lib.maintainers; [ ambroisie ]; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/wo/wormhole-william/package.nix
··· 37 37 --zsh <($out/bin/wormhole-william shell-completion zsh) 38 38 ''; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 homepage = "https://github.com/psanford/wormhole-william"; 42 42 description = "End-to-end encrypted file transfers"; 43 43 changelog = "https://github.com/psanford/wormhole-william/releases/tag/v${version}"; 44 - license = licenses.mit; 45 - maintainers = with maintainers; [ psanford ]; 44 + license = lib.licenses.mit; 45 + maintainers = with lib.maintainers; [ psanford ]; 46 46 mainProgram = "wormhole-william"; 47 47 }; 48 48 }
+5 -5
pkgs/by-name/wp/wp-cli/package.nix
··· 75 75 $out/bin/wp --info 76 76 ''; 77 77 78 - meta = with lib; { 78 + meta = { 79 79 description = "Command line interface for WordPress"; 80 80 homepage = "https://wp-cli.org"; 81 - changelog = "https://github.com/wp-cli/wp-cli/releases/tag/v${version}"; 82 - license = licenses.mit; 83 - maintainers = with maintainers; [ peterhoeg ]; 84 - platforms = platforms.all; 81 + changelog = "https://github.com/wp-cli/wp-cli/releases/tag/v${finalAttrs.version}"; 82 + license = lib.licenses.mit; 83 + maintainers = with lib.maintainers; [ peterhoeg ]; 84 + platforms = lib.platforms.all; 85 85 mainProgram = "wp"; 86 86 }; 87 87 })
+3 -3
pkgs/by-name/ws/wsl-vpnkit/package.nix
··· 75 75 }; 76 76 }; 77 77 78 - meta = with lib; { 78 + meta = { 79 79 description = "Provides network connectivity to Windows Subsystem for Linux (WSL) when blocked by VPN"; 80 80 homepage = "https://github.com/sakai135/wsl-vpnkit"; 81 81 changelog = "https://github.com/sakai135/wsl-vpnkit/releases/tag/v${version}"; 82 - license = licenses.mit; 83 - maintainers = with maintainers; [ terlar ]; 82 + license = lib.licenses.mit; 83 + maintainers = with lib.maintainers; [ terlar ]; 84 84 mainProgram = "wsl-vpnkit"; 85 85 }; 86 86 }
+4 -4
pkgs/by-name/ws/wslu/package.nix
··· 34 34 "PREFIX=" 35 35 ]; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Collection of utilities for Windows Subsystem for Linux"; 39 39 homepage = "https://github.com/wslutilities/wslu"; 40 40 changelog = "https://github.com/wslutilities/wslu/releases/tag/v${version}"; 41 - license = licenses.gpl3Plus; 42 - maintainers = with maintainers; [ jamiemagee ]; 43 - platforms = platforms.linux; 41 + license = lib.licenses.gpl3Plus; 42 + maintainers = with lib.maintainers; [ jamiemagee ]; 43 + platforms = lib.platforms.linux; 44 44 }; 45 45 }
+4 -4
pkgs/by-name/wt/wtfutil/package.nix
··· 50 50 51 51 passthru.updateScript = nix-update-script { }; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 description = "Personal information dashboard for your terminal"; 55 55 homepage = "https://wtfutil.com/"; 56 56 changelog = "https://github.com/wtfutil/wtf/raw/v${version}/CHANGELOG.md"; 57 - license = licenses.mpl20; 58 - maintainers = with maintainers; [ 57 + license = lib.licenses.mpl20; 58 + maintainers = with lib.maintainers; [ 59 59 xiaoxiangmoe 60 60 kalbasit 61 61 ]; 62 62 mainProgram = "wtfutil"; 63 - platforms = platforms.linux ++ platforms.darwin; 63 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 64 64 }; 65 65 }
+3 -3
pkgs/by-name/wu/wush/package.nix
··· 25 25 26 26 env.CGO_ENABLED = 0; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 homepage = "https://github.com/coder/wush"; 30 30 description = "Transfer files between computers via WireGuard"; 31 31 changelog = "https://github.com/coder/wush/releases/tag/v${version}"; 32 - license = licenses.cc0; 32 + license = lib.licenses.cc0; 33 33 mainProgram = "wush"; 34 - maintainers = with maintainers; [ abbe ]; 34 + maintainers = with lib.maintainers; [ abbe ]; 35 35 }; 36 36 }
+3 -3
pkgs/by-name/wy/wyoming-faster-whisper/package.nix
··· 37 37 # no tests 38 38 doCheck = false; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 changelog = "https://github.com/rhasspy/wyoming-faster-whisper/releases/tag/v${version}"; 42 42 description = "Wyoming Server for Faster Whisper"; 43 43 homepage = "https://github.com/rhasspy/wyoming-faster-whisper"; 44 - license = licenses.mit; 45 - maintainers = with maintainers; [ hexa ]; 44 + license = lib.licenses.mit; 45 + maintainers = with lib.maintainers; [ hexa ]; 46 46 mainProgram = "wyoming-faster-whisper"; 47 47 }; 48 48 }
+3 -3
pkgs/by-name/wy/wyoming-openwakeword/package.nix
··· 37 37 "wyoming_openwakeword" 38 38 ]; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 changelog = "https://github.com/rhasspy/wyoming-openwakeword/blob/v${version}/CHANGELOG.md"; 42 42 description = "Open source voice assistant toolkit for many human languages"; 43 43 homepage = "https://github.com/rhasspy/wyoming-openwakeword"; 44 - license = licenses.mit; 45 - maintainers = with maintainers; [ hexa ]; 44 + license = lib.licenses.mit; 45 + maintainers = with lib.maintainers; [ hexa ]; 46 46 mainProgram = "wyoming-openwakeword"; 47 47 }; 48 48 }
+3 -3
pkgs/by-name/xa/xandikos/package.nix
··· 39 39 40 40 nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 41 41 42 - meta = with lib; { 42 + meta = { 43 43 description = "Lightweight CalDAV/CardDAV server"; 44 44 homepage = "https://github.com/jelmer/xandikos"; 45 - license = licenses.gpl3Plus; 45 + license = lib.licenses.gpl3Plus; 46 46 changelog = "https://github.com/jelmer/xandikos/blob/v${version}/NEWS"; 47 - maintainers = with maintainers; [ _0x4A6F ]; 47 + maintainers = with lib.maintainers; [ _0x4A6F ]; 48 48 mainProgram = "xandikos"; 49 49 }; 50 50 }
+3 -3
pkgs/by-name/xc/xcat/package.nix
··· 36 36 doCheck = false; 37 37 pythonImportsCheck = [ "xcat" ]; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "XPath injection tool"; 41 41 mainProgram = "xcat"; 42 42 longDescription = '' ··· 47 47 ''; 48 48 homepage = "https://github.com/orf/xcat"; 49 49 changelog = "https://github.com/orf/xcat/releases/tag/v${version}"; 50 - license = with licenses; [ mit ]; 51 - maintainers = with maintainers; [ fab ]; 50 + license = with lib.licenses; [ mit ]; 51 + maintainers = with lib.maintainers; [ fab ]; 52 52 }; 53 53 }
+3 -3
pkgs/by-name/xc/xcrawl3r/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "CLI utility to recursively crawl webpages"; 27 27 homepage = "https://github.com/hueristiq/xcrawl3r"; 28 28 changelog = "https://github.com/hueristiq/xcrawl3r/releases/tag/${version}"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "xcrawl3r"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/xe/xeol/package.nix
··· 29 29 "-X=main.gitDescription=${src.rev}" 30 30 ]; 31 31 32 - meta = with lib; { 32 + meta = { 33 33 description = "Scanner for end-of-life (EOL) software and dependencies in container images, filesystems, and SBOMs"; 34 34 homepage = "https://github.com/xeol-io/xeol"; 35 35 changelog = "https://github.com/xeol-io/xeol/releases/tag/v${version}"; 36 - license = licenses.asl20; 37 - maintainers = with maintainers; [ fab ]; 36 + license = lib.licenses.asl20; 37 + maintainers = with lib.maintainers; [ fab ]; 38 38 mainProgram = "xeol"; 39 39 }; 40 40 }
+1 -1
pkgs/by-name/xf/xfig/package.nix
··· 61 61 62 62 enableParallelBuilding = true; 63 63 64 - meta = with lib; { 64 + meta = { 65 65 changelog = "https://sourceforge.net/p/mcj/xfig/ci/${version}/tree/CHANGES"; 66 66 description = "Interactive drawing tool for X11"; 67 67 mainProgram = "xfig";
+3 -3
pkgs/by-name/xi/xiu/package.nix
··· 38 38 39 39 OPENSSL_NO_VENDOR = 1; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Simple, high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS"; 43 43 homepage = "https://github.com/harlanc/xiu"; 44 44 changelog = "https://github.com/harlanc/xiu/releases/tag/v${version}"; 45 - license = licenses.mit; 46 - maintainers = with maintainers; [ cafkafk ]; 45 + license = lib.licenses.mit; 46 + maintainers = with lib.maintainers; [ cafkafk ]; 47 47 mainProgram = "xiu"; 48 48 }; 49 49 }
+3 -3
pkgs/by-name/xn/xnlinkfinder/package.nix
··· 44 44 45 45 pythonImportsCheck = [ "xnLinkFinder" ]; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Tool to discover endpoints, potential parameters, and a target specific wordlist for a given target"; 49 49 homepage = "https://github.com/xnl-h4ck3r/xnLinkFinder"; 50 50 changelog = "https://github.com/xnl-h4ck3r/xnLinkFinder/blob/${version}/CHANGELOG.md"; 51 - license = licenses.mit; 52 - maintainers = with maintainers; [ fab ]; 51 + license = lib.licenses.mit; 52 + maintainers = with lib.maintainers; [ fab ]; 53 53 mainProgram = "xnLinkFinder"; 54 54 }; 55 55 }
+3 -3
pkgs/by-name/xo/xortool/package.nix
··· 28 28 29 29 pythonImportsCheck = [ "xortool" ]; 30 30 31 - meta = with lib; { 31 + meta = { 32 32 description = "Tool to analyze multi-byte XOR cipher"; 33 33 homepage = "https://github.com/hellman/xortool"; 34 34 changelog = "https://github.com/hellman/xortool/releases/tag/v${version}"; 35 - license = licenses.mit; 36 - maintainers = with maintainers; [ fab ]; 35 + license = lib.licenses.mit; 36 + maintainers = with lib.maintainers; [ fab ]; 37 37 }; 38 38 }
+4 -4
pkgs/by-name/xp/xpano/package.nix
··· 52 52 "-DXPANO_INSTALL_DESKTOP_FILES=ON" 53 53 ]; 54 54 55 - meta = with lib; { 55 + meta = { 56 56 description = "Panorama stitching tool"; 57 57 mainProgram = "Xpano"; 58 58 homepage = "https://krupkat.github.io/xpano/"; 59 59 changelog = "https://github.com/krupkat/xpano/releases/tag/v${version}"; 60 - license = licenses.gpl3Plus; 61 - maintainers = with maintainers; [ krupkat ]; 62 - platforms = platforms.linux; 60 + license = lib.licenses.gpl3Plus; 61 + maintainers = with lib.maintainers; [ krupkat ]; 62 + platforms = lib.platforms.linux; 63 63 }; 64 64 }
+5 -5
pkgs/by-name/xp/xpipe/package.nix
··· 141 141 runHook postInstall 142 142 ''; 143 143 144 - meta = with lib; { 144 + meta = { 145 145 description = "Cross-platform shell connection hub and remote file manager"; 146 146 homepage = "https://github.com/xpipe-io/${pname}"; 147 147 downloadPage = "https://github.com/xpipe-io/${pname}/releases/latest"; 148 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 148 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 149 149 changelog = "https://github.com/xpipe-io/${pname}/releases/tag/${version}"; 150 150 license = [ 151 - licenses.asl20 152 - licenses.unfree 151 + lib.licenses.asl20 152 + lib.licenses.unfree 153 153 ]; 154 - maintainers = with maintainers; [ crschnick ]; 154 + maintainers = with lib.maintainers; [ crschnick ]; 155 155 platforms = [ "x86_64-linux" ]; 156 156 mainProgram = pname; 157 157 };
+3 -3
pkgs/by-name/xs/xsubfind3r/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "CLI utility to find subdomains from curated passive online sources"; 27 27 homepage = "https://github.com/hueristiq/xsubfind3r"; 28 28 changelog = "https://github.com/hueristiq/xsubfind3r/releases/tag/${version}"; 29 - license = licenses.mit; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.mit; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "xsubfind3r"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/ya/yamlfmt/package.nix
··· 30 30 package = yamlfmt; 31 31 }; 32 32 33 - meta = with lib; { 33 + meta = { 34 34 description = "Extensible command line tool or library to format yaml files"; 35 35 homepage = "https://github.com/google/yamlfmt"; 36 36 changelog = "https://github.com/google/yamlfmt/releases/tag/v${version}"; 37 - license = licenses.asl20; 38 - maintainers = with maintainers; [ sno2wman ]; 37 + license = lib.licenses.asl20; 38 + maintainers = with lib.maintainers; [ sno2wman ]; 39 39 mainProgram = "yamlfmt"; 40 40 }; 41 41 }
+3 -3
pkgs/by-name/ya/yamlpath/package.nix
··· 37 37 "yamlpath" 38 38 ]; 39 39 40 - meta = with lib; { 40 + meta = { 41 41 description = "Command-line processors for YAML/JSON/Compatible data"; 42 42 homepage = "https://github.com/wwkimball/yamlpath"; 43 43 changelog = "https://github.com/wwkimball/yamlpath/releases/tag/v${version}"; ··· 45 45 Command-line get/set/merge/validate/scan/convert/diff processors for YAML/JSON/Compatible data 46 46 using powerful, intuitive, command-line friendly syntax 47 47 ''; 48 - license = licenses.isc; 49 - maintainers = with maintainers; [ Flakebi ]; 48 + license = lib.licenses.isc; 49 + maintainers = with lib.maintainers; [ Flakebi ]; 50 50 51 51 # No support for ruamel.yaml > 0.17.21 52 52 # https://github.com/wwkimball/yamlpath/issues/217
+4 -4
pkgs/by-name/ya/yara/package.nix
··· 55 55 56 56 doCheck = enableStatic; 57 57 58 - meta = with lib; { 58 + meta = { 59 59 description = "Tool to perform pattern matching for malware-related tasks"; 60 60 homepage = "http://Virustotal.github.io/yara/"; 61 61 changelog = "https://github.com/VirusTotal/yara/releases/tag/v${version}"; 62 - license = licenses.asl20; 63 - maintainers = with maintainers; [ fab ]; 62 + license = lib.licenses.asl20; 63 + maintainers = with lib.maintainers; [ fab ]; 64 64 mainProgram = "yara"; 65 - platforms = platforms.all; 65 + platforms = lib.platforms.all; 66 66 }; 67 67 }
+3 -3
pkgs/by-name/ya/yarr/package.nix
··· 42 42 tests = lib.optionalAttrs stdenv.hostPlatform.isLinux nixosTests.yarr; 43 43 }; 44 44 45 - meta = with lib; { 45 + meta = { 46 46 description = "Yet another rss reader"; 47 47 mainProgram = "yarr"; 48 48 homepage = "https://github.com/nkanaev/yarr"; 49 49 changelog = "https://github.com/nkanaev/yarr/blob/v${version}/doc/changelog.txt"; 50 - license = licenses.mit; 51 - maintainers = with maintainers; [ 50 + license = lib.licenses.mit; 51 + maintainers = with lib.maintainers; [ 52 52 sikmir 53 53 christoph-heiss 54 54 ];
+3 -3
pkgs/by-name/ya/yatas/package.nix
··· 17 17 18 18 vendorHash = "sha256-zp5EVJe5Q6o6C0CZ8u+oEFEOy0NU5SgVN+cSc6A/jZ4="; 19 19 20 - meta = with lib; { 20 + meta = { 21 21 description = "Tool to audit AWS infrastructure for misconfiguration or potential security issues"; 22 22 homepage = "https://github.com/padok-team/YATAS"; 23 23 changelog = "https://github.com/padok-team/YATAS/releases/tag/v${version}"; 24 - license = licenses.asl20; 25 - maintainers = with maintainers; [ fab ]; 24 + license = lib.licenses.asl20; 25 + maintainers = with lib.maintainers; [ fab ]; 26 26 mainProgram = "yatas"; 27 27 }; 28 28 }
+4 -4
pkgs/by-name/yl/yle-dl/package.nix
··· 48 48 command = "yle-dl -h"; 49 49 }; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 description = "Downloads videos from Yle (Finnish Broadcasting Company) servers"; 53 53 homepage = "https://aajanki.github.io/yle-dl/"; 54 54 changelog = "https://github.com/aajanki/yle-dl/blob/${version}/ChangeLog"; 55 - license = licenses.gpl3Plus; 56 - maintainers = with maintainers; [ dezgeg ]; 57 - platforms = platforms.unix; 55 + license = lib.licenses.gpl3Plus; 56 + maintainers = with lib.maintainers; [ dezgeg ]; 57 + platforms = lib.platforms.unix; 58 58 mainProgram = "yle-dl"; 59 59 }; 60 60 }
+3 -3
pkgs/by-name/yo/yor/package.nix
··· 33 33 "-w" 34 34 ]; 35 35 36 - meta = with lib; { 36 + meta = { 37 37 description = "Extensible auto-tagger for your IaC files. The ultimate way to link entities in the cloud back to the codified resource which created it"; 38 38 homepage = "https://github.com/bridgecrewio/yor"; 39 39 changelog = "https://github.com/bridgecrewio/yor/releases/tag/${version}"; 40 - license = licenses.asl20; 41 - maintainers = [ maintainers.ivankovnatsky ]; 40 + license = lib.licenses.asl20; 41 + maintainers = [ lib.maintainers.ivankovnatsky ]; 42 42 }; 43 43 }
+3 -3
pkgs/by-name/yo/you-get/package.nix
··· 42 42 "you_get" 43 43 ]; 44 44 45 - meta = with lib; { 45 + meta = { 46 46 description = "Tiny command line utility to download media contents from the web"; 47 47 homepage = "https://you-get.org"; 48 48 changelog = "https://github.com/soimort/you-get/raw/v${version}/CHANGELOG.rst"; 49 - license = licenses.mit; 50 - maintainers = with maintainers; [ ryneeverett ]; 49 + license = lib.licenses.mit; 50 + maintainers = with lib.maintainers; [ ryneeverett ]; 51 51 mainProgram = "you-get"; 52 52 }; 53 53 }
+4 -4
pkgs/by-name/yo/youki/package.nix
··· 56 56 useFetchCargoVendor = true; 57 57 cargoHash = "sha256-nRlvvr73glmpFsWb2Pi1icZl7d85/8iX2rHnNXv4ep8="; 58 58 59 - meta = with lib; { 59 + meta = { 60 60 description = "Container runtime written in Rust"; 61 61 homepage = "https://containers.github.io/youki/"; 62 62 changelog = "https://github.com/containers/youki/releases/tag/v${version}"; 63 - license = licenses.asl20; 64 - maintainers = with maintainers; [ builditluc ]; 65 - platforms = platforms.linux; 63 + license = lib.licenses.asl20; 64 + maintainers = with lib.maintainers; [ builditluc ]; 65 + platforms = lib.platforms.linux; 66 66 mainProgram = "youki"; 67 67 }; 68 68 }
+4 -4
pkgs/by-name/zb/zbctl/package.nix
··· 34 34 runHook postInstall 35 35 ''; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 description = "Command line interface to interact with Camunda 8 and Zeebe"; 39 39 homepage = "https://docs.camunda.io/docs/apis-clients/cli-client/"; 40 40 downloadPage = "https://github.com/camunda/zeebe/releases"; 41 41 changelog = "https://github.com/camunda/zeebe/releases/tag/${version}"; 42 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 43 - license = licenses.asl20; 42 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 43 + license = lib.licenses.asl20; 44 44 platforms = [ 45 45 "x86_64-darwin" 46 46 "x86_64-linux" 47 47 ]; 48 - maintainers = with maintainers; [ thetallestjj ]; 48 + maintainers = with lib.maintainers; [ thetallestjj ]; 49 49 longDescription = '' 50 50 A command line interface for Camunda Platform 8 designed to create and read resources inside a Zeebe broker. 51 51 It can be used for regular development and maintenance tasks such as:
+3 -3
pkgs/by-name/ze/zed/package.nix
··· 40 40 }; 41 41 }; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Novel data lake based on super-structured data"; 45 45 homepage = "https://zed.brimdata.io"; 46 46 changelog = "https://github.com/brimdata/zed/blob/v${version}/CHANGELOG.md"; 47 - license = licenses.bsd3; 48 - maintainers = with maintainers; [ 47 + license = lib.licenses.bsd3; 48 + maintainers = with lib.maintainers; [ 49 49 dit7ya 50 50 knl 51 51 ];
+4 -4
pkgs/by-name/ze/zeek/package.nix
··· 107 107 inherit broker; 108 108 }; 109 109 110 - meta = with lib; { 110 + meta = { 111 111 description = "Network analysis framework much different from a typical IDS"; 112 112 homepage = "https://www.zeek.org"; 113 113 changelog = "https://github.com/zeek/zeek/blob/v${version}/CHANGES"; 114 - license = licenses.bsd3; 115 - maintainers = with maintainers; [ 114 + license = lib.licenses.bsd3; 115 + maintainers = with lib.maintainers; [ 116 116 pSub 117 117 tobim 118 118 ]; 119 - platforms = platforms.unix; 119 + platforms = lib.platforms.unix; 120 120 }; 121 121 }
+3 -3
pkgs/by-name/ze/zeekscript/package.nix
··· 31 31 "zeekscript" 32 32 ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Zeek script formatter and analyzer"; 36 36 homepage = "https://github.com/zeek/zeekscript"; 37 37 changelog = "https://github.com/zeek/zeekscript/blob/v${version}/CHANGES"; 38 - license = licenses.bsd3; 39 - maintainers = with maintainers; [ 38 + license = lib.licenses.bsd3; 39 + maintainers = with lib.maintainers; [ 40 40 fab 41 41 tobim 42 42 ];
+3 -3
pkgs/by-name/zf/zfind/package.nix
··· 22 22 "main.appVersion=${version}" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "CLI for file search with SQL like syntax."; 27 27 longDescription = '' 28 28 zfind allows you to search for files, including inside tar, zip, 7z and rar archives. ··· 30 30 ''; 31 31 homepage = "https://github.com/laktak/zfind"; 32 32 changelog = "https://github.com/laktak/zfind/releases/tag/v${version}"; 33 - license = licenses.mit; 33 + license = lib.licenses.mit; 34 34 mainProgram = "zfind"; 35 - maintainers = with maintainers; [ eeedean ]; 35 + maintainers = with lib.maintainers; [ eeedean ]; 36 36 }; 37 37 }
+3 -3
pkgs/by-name/zf/zfs-autobackup/package.nix
··· 23 23 24 24 pythonImportsCheck = [ "zfs_autobackup" ]; 25 25 26 - meta = with lib; { 26 + meta = { 27 27 description = "ZFS backup, replicationand snapshot tool"; 28 28 homepage = "https://github.com/psy0rz/zfs_autobackup"; 29 29 changelog = "https://github.com/psy0rz/zfs_autobackup/releases/tag/v${version}"; 30 - license = licenses.gpl3Only; 31 - maintainers = [ ]; 30 + license = lib.licenses.gpl3Only; 31 + maintainers = with lib.maintainers; [ ]; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/zi/zigbee2mqtt_1/package.nix
··· 31 31 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt_1; 32 32 passthru.updateScript = nix-update-script { }; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}"; 36 36 description = "Zigbee to MQTT bridge using zigbee-shepherd"; 37 37 homepage = "https://github.com/Koenkk/zigbee2mqtt"; 38 - license = licenses.gpl3; 38 + license = lib.licenses.gpl3; 39 39 longDescription = '' 40 40 Allows you to use your Zigbee devices without the vendor's bridge or gateway. 41 41 42 42 It bridges events and allows you to control your Zigbee devices via MQTT. 43 43 In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using. 44 44 ''; 45 - maintainers = with maintainers; [ 45 + maintainers = with lib.maintainers; [ 46 46 sweber 47 47 hexa 48 48 ];
+4 -4
pkgs/by-name/zi/zile/package.nix
··· 46 46 # XXX: Work around cross-compilation-unfriendly `gl_FUNC_FSTATAT' macro. 47 47 gl_cv_func_fstatat_zero_flag = "yes"; 48 48 49 - meta = with lib; { 49 + meta = { 50 50 homepage = "https://www.gnu.org/software/zile/"; 51 51 changelog = "https://git.savannah.gnu.org/cgit/zile.git/plain/NEWS?h=v${version}"; 52 52 description = "Zile Implements Lua Editors"; ··· 78 78 Lossy Emacs. Zile has been written to be as similar as possible to Emacs; 79 79 every Emacs user should feel at home. 80 80 ''; 81 - license = licenses.gpl3Plus; 82 - maintainers = with maintainers; [ pSub ]; 83 - platforms = platforms.unix; 81 + license = lib.licenses.gpl3Plus; 82 + maintainers = with lib.maintainers; [ pSub ]; 83 + platforms = lib.platforms.unix; 84 84 mainProgram = "zile"; 85 85 }; 86 86 }
+3 -3
pkgs/by-name/zi/zim/package.nix
··· 66 66 ${python3Packages.python.interpreter} test.py 67 67 ''; 68 68 69 - meta = with lib; { 69 + meta = { 70 70 description = "Desktop wiki"; 71 71 homepage = "https://zim-wiki.org/"; 72 72 changelog = "https://github.com/zim-desktop-wiki/zim-desktop-wiki/blob/${version}/CHANGELOG.md"; 73 - license = licenses.gpl2Plus; 74 - maintainers = with maintainers; [ pSub ]; 73 + license = lib.licenses.gpl2Plus; 74 + maintainers = with lib.maintainers; [ pSub ]; 75 75 mainProgram = "zim"; 76 76 broken = stdenv.hostPlatform.isDarwin; # https://github.com/NixOS/nixpkgs/pull/52658#issuecomment-449565790 77 77 };
+3 -3
pkgs/by-name/zi/zine/package.nix
··· 31 31 openssl 32 32 ]; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Simple and opinionated tool to build your own magazine"; 36 36 homepage = "https://github.com/zineland/zine"; 37 37 changelog = "https://github.com/zineland/zine/releases/tag/v${version}"; 38 - license = licenses.asl20; 39 - maintainers = with maintainers; [ 38 + license = lib.licenses.asl20; 39 + maintainers = with lib.maintainers; [ 40 40 dit7ya 41 41 figsoda 42 42 ];
+3 -3
pkgs/by-name/zk/zkar/package.nix
··· 22 22 "-w" 23 23 ]; 24 24 25 - meta = with lib; { 25 + meta = { 26 26 description = "Java serialization protocol analysis tool"; 27 27 homepage = "https://github.com/phith0n/zkar"; 28 28 changelog = "https://github.com/phith0n/zkar/releases/tag/v${version}"; 29 - license = licenses.asl20; 30 - maintainers = with maintainers; [ fab ]; 29 + license = lib.licenses.asl20; 30 + maintainers = with lib.maintainers; [ fab ]; 31 31 mainProgram = "zkar"; 32 32 }; 33 33 }
+3 -3
pkgs/by-name/zo/zola/package.nix
··· 44 44 45 45 passthru.tests.version = testers.testVersion { package = zola; }; 46 46 47 - meta = with lib; { 47 + meta = { 48 48 description = "Fast static site generator with everything built-in"; 49 49 mainProgram = "zola"; 50 50 homepage = "https://www.getzola.org/"; 51 51 changelog = "https://github.com/getzola/zola/raw/v${version}/CHANGELOG.md"; 52 - license = licenses.mit; 53 - maintainers = with maintainers; [ 52 + license = lib.licenses.mit; 53 + maintainers = with lib.maintainers; [ 54 54 dandellion 55 55 dywedir 56 56 _0x4A6F
+5 -5
pkgs/by-name/zo/zookeeper/package.nix
··· 50 50 inherit jre; 51 51 }; 52 52 53 - meta = with lib; { 53 + meta = { 54 54 homepage = "https://zookeeper.apache.org"; 55 55 description = "Apache Zookeeper"; 56 56 changelog = "https://zookeeper.apache.org/doc/r${version}/releasenotes.html"; 57 - license = licenses.asl20; 58 - maintainers = with maintainers; [ 57 + license = lib.licenses.asl20; 58 + maintainers = with lib.maintainers; [ 59 59 nathan-gs 60 60 pradeepchhetri 61 61 ztzg 62 62 ]; 63 - platforms = platforms.unix; 64 - sourceProvenance = with sourceTypes; [ binaryBytecode ]; 63 + platforms = lib.platforms.unix; 64 + sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 65 65 }; 66 66 }
+3 -3
pkgs/by-name/zo/zoxide/package.nix
··· 40 40 --zsh contrib/completions/_zoxide 41 41 ''; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Fast cd command that learns your habits"; 45 45 homepage = "https://github.com/ajeetdsouza/zoxide"; 46 46 changelog = "https://github.com/ajeetdsouza/zoxide/blob/v${version}/CHANGELOG.md"; 47 - license = with licenses; [ mit ]; 48 - maintainers = with maintainers; [ 47 + license = with lib.licenses; [ mit ]; 48 + maintainers = with lib.maintainers; [ 49 49 ysndr 50 50 cole-h 51 51 SuperSandro2000
+4 -4
pkgs/by-name/zp/zps/package.nix
··· 26 26 --replace Exec=zps Exec=$out/zps \ 27 27 ''; 28 28 29 - meta = with lib; { 29 + meta = { 30 30 description = "Small utility for listing and reaping zombie processes on GNU/Linux"; 31 31 homepage = "https://github.com/orhun/zps"; 32 32 changelog = "https://github.com/orhun/zps/releases/tag/${version}"; 33 - license = licenses.gpl3Only; 34 - maintainers = with maintainers; [ figsoda ]; 35 - platforms = platforms.linux; 33 + license = lib.licenses.gpl3Only; 34 + maintainers = with lib.maintainers; [ figsoda ]; 35 + platforms = lib.platforms.linux; 36 36 mainProgram = "zps"; 37 37 }; 38 38 }
+3 -3
pkgs/by-name/zs/zs/package.nix
··· 35 35 --zsh <($out/bin/zs completion zsh) 36 36 ''; 37 37 38 - meta = with lib; { 38 + meta = { 39 39 description = "Extremely minimal static site generator written in Go"; 40 40 homepage = "https://git.mills.io/prologic/zs"; 41 41 changelog = "https://git.mills.io/prologic/zs/releases/tag/${version}"; 42 - license = licenses.mit; 43 - maintainers = with maintainers; [ adtya ]; 42 + license = lib.licenses.mit; 43 + maintainers = with lib.maintainers; [ adtya ]; 44 44 mainProgram = "zs"; 45 45 }; 46 46 }
+4 -4
pkgs/by-name/zs/zsh-wd/package.nix
··· 25 25 installShellCompletion --zsh _wd.sh 26 26 ''; 27 27 28 - meta = with lib; { 28 + meta = { 29 29 description = "Jump to custom directories in zsh"; 30 30 longDescription = '' 31 31 `wd` (warp directory) lets you jump to custom directories in zsh, without ··· 34 34 ''; 35 35 homepage = "https://github.com/mfaerevaag/wd"; 36 36 changelog = "https://github.com/mfaerevaag/wd/releases/tag/v${version}"; 37 - license = licenses.mit; 38 - maintainers = [ maintainers.zimeg ]; 37 + license = lib.licenses.mit; 38 + maintainers = [ lib.maintainers.zimeg ]; 39 39 mainProgram = "wd"; 40 - platforms = platforms.unix; 40 + platforms = lib.platforms.unix; 41 41 }; 42 42 }
+3 -3
pkgs/by-name/zu/zulip-term/package.nix
··· 78 78 (lib.makeBinPath [ libnotify ]) 79 79 ]; 80 80 81 - meta = with lib; { 81 + meta = { 82 82 description = "Zulip's official terminal client"; 83 83 homepage = "https://github.com/zulip/zulip-terminal"; 84 84 changelog = "https://github.com/zulip/zulip-terminal/releases/tag/${version}"; 85 - license = licenses.asl20; 86 - maintainers = with maintainers; [ dotlambda ]; 85 + license = lib.licenses.asl20; 86 + maintainers = with lib.maintainers; [ dotlambda ]; 87 87 }; 88 88 }
+2 -2
pkgs/by-name/zx/zxfer/package.nix
··· 77 77 execer = [ "cannot:${rsync}/bin/rsync" ]; 78 78 }; 79 79 80 - meta = with lib; { 80 + meta = { 81 81 description = "Popular script for managing ZFS snapshot replication"; 82 82 homepage = "https://github.com/allanjude/zxfer"; 83 83 changelog = "https://github.com/allanjude/zxfer/releases/tag/v${version}"; 84 - license = licenses.bsd2; 84 + license = lib.licenses.bsd2; 85 85 maintainers = with lib.maintainers; [ urandom ]; 86 86 mainProgram = "zxfer"; 87 87 };
+4 -4
pkgs/by-name/zy/zydis/package.nix
··· 34 34 nativeCheckInputs = [ python3 ]; 35 35 passthru = { inherit zycore; }; 36 36 37 - meta = with lib; { 37 + meta = { 38 38 homepage = "https://zydis.re/"; 39 39 changelog = "https://github.com/zyantific/zydis/releases/tag/v${version}"; 40 40 description = "Fast and lightweight x86/x86-64 disassembler library"; 41 - license = licenses.mit; 42 - maintainers = with maintainers; [ 41 + license = lib.licenses.mit; 42 + maintainers = with lib.maintainers; [ 43 43 jbcrail 44 44 athre0z 45 45 ]; 46 - platforms = platforms.all; 46 + platforms = lib.platforms.all; 47 47 }; 48 48 }
+4 -4
pkgs/by-name/zz/zziplib/package.nix
··· 48 48 "-DBUILDTESTS=OFF" 49 49 ]; 50 50 51 - meta = with lib; { 51 + meta = { 52 52 homepage = "https://github.com/gdraheim/zziplib"; 53 53 changelog = "https://github.com/gdraheim/zziplib/blob/${version}/ChangeLog"; 54 54 description = "Library to extract data from files archived in a zip file"; ··· 59 59 The implementation is based only on the (free) subset of compression with 60 60 the zlib algorithm which is actually used by the zip/unzip tools. 61 61 ''; 62 - license = with licenses; [ 62 + license = with lib.licenses; [ 63 63 lgpl2Plus 64 64 mpl11 65 65 ]; 66 - maintainers = with maintainers; [ ]; 67 - platforms = platforms.unix; 66 + maintainers = with lib.maintainers; [ ]; 67 + platforms = lib.platforms.unix; 68 68 }; 69 69 }