treewide: refactor meta section

This commit is contained in:
Guy Chronister
2025-06-21 13:12:59 +00:00
parent 6c827a97ee
commit f2a2cfee8a
26 changed files with 94 additions and 94 deletions
+4 -4
View File
@@ -37,11 +37,11 @@ gccStdenv.mkDerivation {
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
View File
@@ -23,11 +23,11 @@ stdenvNoCC.mkDerivation rec {
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
View File
@@ -86,16 +86,16 @@ stdenv.mkDerivation {
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
View File
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
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";
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
"i686-linux"
"x86_64-linux"
];
license = licenses.publicDomain;
license = lib.licenses.publicDomain;
};
}
+4 -4
View File
@@ -65,7 +65,7 @@ stdenv.mkDerivation {
"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 = ''
@@ -74,12 +74,12 @@ stdenv.mkDerivation {
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
View File
@@ -128,12 +128,12 @@ buildGoModule rec {
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;
};
}
@@ -18,12 +18,12 @@ rustPlatform.buildRustPackage rec {
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
View File
@@ -90,13 +90,13 @@ stdenv.mkDerivation (finalAttrs: {
'';
};
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
View File
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-5kxuALU815dCfqMqFgUTQlsD7U8HdzP3Hx8J/zQPIws=";
};
meta = with lib; {
meta = {
description = "Show battery status and other ACPI information";
mainProgram = "acpi";
longDescription = ''
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://sourceforge.net/projects/acpiclient/";
license = lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
};
}
+3 -3
View File
@@ -27,11 +27,11 @@ python3Packages.buildPythonApplication rec {
# 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
View File
@@ -16,10 +16,10 @@ stdenv.mkDerivation rec {
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
View File
@@ -37,12 +37,12 @@ stdenv.mkDerivation rec {
];
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
View File
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
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
@@ -80,8 +80,8 @@ stdenv.mkDerivation rec {
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
View File
@@ -25,11 +25,11 @@ rustPlatform.buildRustPackage {
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
View File
@@ -61,15 +61,15 @@ stdenv.mkDerivation (finalAttrs: {
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
View File
@@ -34,12 +34,12 @@ stdenv.mkDerivation rec {
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;
};
}
@@ -51,7 +51,7 @@ stdenv.mkDerivation {
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
@@ -60,8 +60,8 @@ stdenv.mkDerivation {
./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
View File
@@ -35,11 +35,11 @@ buildGoModule rec {
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
View File
@@ -35,12 +35,12 @@ stdenv.mkDerivation {
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
View File
@@ -58,12 +58,12 @@ stdenv.mkDerivation rec {
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
View File
@@ -45,12 +45,12 @@ stdenv.mkDerivation rec {
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
View File
@@ -28,11 +28,11 @@ stdenv.mkDerivation rec {
--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
View File
@@ -19,15 +19,15 @@ stdenv.mkDerivation rec {
"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
View File
@@ -60,11 +60,11 @@ python3Packages.buildPythonApplication rec {
};
};
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
View File
@@ -30,11 +30,11 @@ stdenv.mkDerivation rec {
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
View File
@@ -23,11 +23,11 @@ stdenv.mkDerivation rec {
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 ];
};
}