treewide: refactor meta section

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