treewide: refactor meta section part 2

adapta-gtk-theme: remove maintainers.

Co-authored-by: Shawn8901 <shawn8901@googlemail.com>
This commit is contained in:
Guy Chronister 2025-06-23 02:13:17 +00:00
parent 84806571cb
commit 33c8949e5f
47 changed files with 168 additions and 168 deletions

View File

@ -23,11 +23,11 @@ rustPlatform.buildRustPackage {
ln -s ${./Cargo.lock} Cargo.lock
'';
meta = with lib; {
meta = {
homepage = "https://github.com/mcy/0x";
description = "Colorful, configurable xxd";
mainProgram = "0x";
license = licenses.asl20;
maintainers = with maintainers; [ ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -27,11 +27,11 @@ stdenv.mkDerivation rec {
'';
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
meta = {
inherit (src.meta) homepage;
description = "Animated console version of the 2048 game";
mainProgram = "2048-in-terminal";
license = licenses.mit;
platforms = platforms.unix;
license = lib.licenses.mit;
platforms = lib.platforms.unix;
};
}

View File

@ -38,11 +38,11 @@ python3Packages.buildPythonApplication rec {
install -Dm755 lightyears "$out/bin/lightyears"
'';
meta = with lib; {
meta = {
description = "Steampunk-themed strategy game where you have to manage a steam supply network";
mainProgram = "lightyears";
homepage = "http://jwhitham.org.uk/20kly/";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fgaz ];
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fgaz ];
};
}

View File

@ -50,7 +50,7 @@ buildGoModule rec {
wrapProgram $out/bin/3mux --prefix PATH : $out/bin
'';
meta = with lib; {
meta = {
description = "Terminal multiplexer inspired by i3";
mainProgram = "3mux";
longDescription = ''
@ -58,11 +58,11 @@ buildGoModule rec {
mouse-controlled scrollback, and i3-like keybindings
'';
homepage = "https://github.com/aaronjanse/3mux";
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
aaronjanse
Br1ght0ne
];
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
}

View File

@ -79,12 +79,12 @@ stdenv.mkDerivation {
dontFixup = true;
dontStrip = true;
meta = with lib; {
meta = {
homepage = "https://github.com/gapophustu/4D-Minesweeper";
description = "4D Minesweeper game written in Godot";
license = licenses.mpl20;
platforms = platforms.linux;
maintainers = [ ];
license = lib.licenses.mpl20;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ ];
mainProgram = "4d-minesweeper";
};
}

View File

@ -29,11 +29,11 @@ stdenv.mkDerivation rec {
installFlags = [ "install-exec" ];
meta = with lib; {
meta = {
homepage = "https://4ti2.github.io/";
description = "Software package for algebraic, geometric and combinatorial problems on linear spaces";
license = with licenses; [ gpl2Plus ];
maintainers = with maintainers; [ ];
platforms = platforms.all;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.all;
};
}

View File

@ -79,11 +79,11 @@ gccStdenv.mkDerivation (finalAttrs: {
# Multiplayer is auto-disabled for non-x86 system
meta = with lib; {
meta = {
homepage = "https://www.7kfans.com";
description = "GPL release of the Seven Kingdoms with multiplayer (available only on x86 platforms)";
license = licenses.gpl2Only;
platforms = platforms.x86_64 ++ platforms.aarch64;
maintainers = with maintainers; [ _1000101 ];
license = lib.licenses.gpl2Only;
platforms = lib.platforms.x86_64 ++ lib.platforms.aarch64;
maintainers = with lib.maintainers; [ _1000101 ];
};
})

View File

@ -30,12 +30,12 @@ stdenv.mkDerivation {
libXext
];
meta = with lib; {
meta = {
homepage = "https://github.com/arnoldrobbins/9menu";
description = "Simple X11 menu program for running commands";
mainProgram = "9menu";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ];
platforms = libX11.meta.platforms;
};
}

View File

@ -17,16 +17,16 @@ stdenv.mkDerivation (finalAttrs: {
];
installTargets = "mount.9ptls.install";
meta = with lib; {
meta = {
description = "mount.9ptls mount helper";
longDescription = ''
mount.9ptls wraps the v9fs mount type in a dp9ik authenticated
tls tunnel using tlsclient.
'';
homepage = "https://git.sr.ht/~moody/tlsclient";
license = licenses.mit;
maintainers = with maintainers; [ moody ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ moody ];
mainProgram = "mount.9ptls";
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
})

View File

@ -50,11 +50,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = gitUpdater { };
meta = with lib; {
meta = {
description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system";
homepage = "https://a2jmidid.ladish.org/";
license = licenses.gpl2Only;
maintainers = [ ];
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ ];
platforms = [
"i686-linux"
"x86_64-linux"

View File

@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
strictDeps = true;
meta = with lib; {
meta = {
description = "Anything to PostScript converter and pretty-printer";
longDescription = ''
GNU a2ps converts files into PostScript for printing or viewing. It uses a nice default format,
@ -50,8 +50,8 @@ stdenv.mkDerivation rec {
well as pretty printing for a wide range of programming languages.
'';
homepage = "https://www.gnu.org/software/a2ps/";
license = licenses.gpl3Plus;
maintainers = [ maintainers.bennofs ];
platforms = platforms.unix;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ bennofs ];
platforms = lib.platforms.unix;
};
}

View File

@ -17,11 +17,11 @@ rustPlatform.buildRustPackage rec {
useFetchCargoVendor = true;
cargoHash = "sha256-CHX+Ugy4ND36cpxNEFpnqid6ALHMPXmfXi+D4aktPRk=";
meta = with lib; {
meta = {
description = "Terminal viewer for 3a format";
homepage = "https://github.com/DomesticMoth/aaa";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ asciimoth ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ asciimoth ];
mainProgram = "aaa";
};
}

View File

@ -29,12 +29,12 @@ stdenv.mkDerivation {
env.NIX_CFLAGS_COMPILE = "-Wno-error=narrowing";
meta = with lib; {
meta = {
description = "ReplayGain for AAC files";
homepage = "https://github.com/dgilman/aacgain";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = [ maintainers.robbinch ];
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ robbinch ];
mainProgram = "aacgain";
};
}

View File

@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
install -Dm644 NEWS README REMARKS TODO -t $out/share/doc/${pname}
'';
meta = with lib; {
meta = {
homepage = "https://github.com/log69/aaphoto";
description = "Free and open source automatic photo adjusting software";
longDescription = ''
@ -48,9 +48,9 @@ stdenv.mkDerivation rec {
don't intend to spend a lot of time with manually correcting the images
one-by-one.
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.unix;
mainProgram = "aaphoto";
};
}

View File

@ -21,13 +21,13 @@ rustPlatform.buildRustPackage rec {
passthru.tests = { inherit (nixosTests) podman; };
meta = with lib; {
meta = {
changelog = "https://github.com/containers/aardvark-dns/releases/tag/${src.rev}";
description = "Authoritative dns server for A/AAAA container records";
homepage = "https://github.com/containers/aardvark-dns";
license = licenses.asl20;
teams = [ teams.podman ];
platforms = platforms.linux;
license = lib.licenses.asl20;
teams = with lib.teams; [ podman ];
platforms = lib.platforms.linux;
mainProgram = "aardvark-dns";
};
}

View File

@ -70,10 +70,10 @@ resholve.mkDerivation rec {
};
};
meta = with lib; {
meta = {
description = "Convert Audible's .aax filetype to MP3, FLAC, M4A, or OPUS";
homepage = "https://krumpetpirate.github.io/AAXtoMP3";
license = licenses.wtfpl;
maintainers = with maintainers; [ urandom ];
license = lib.licenses.wtfpl;
maintainers = with lib.maintainers; [ urandom ];
};
}

View File

@ -29,12 +29,12 @@ rustPlatform.buildRustPackage rec {
--zsh <($out/bin/ab-av1 print-completions zsh)
'';
meta = with lib; {
meta = {
description = "AV1 re-encoding using ffmpeg, svt-av1 & vmaf";
homepage = "https://github.com/alexheretic/ab-av1";
changelog = "https://github.com/alexheretic/ab-av1/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = [ ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ];
mainProgram = "ab-av1";
};
}

View File

@ -87,12 +87,12 @@ stdenv.mkDerivation rec {
})
];
meta = with lib; {
meta = {
description = "Discord client reimplementation, written in C++";
mainProgram = "abaddon";
homepage = "https://github.com/uowuo/abaddon";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ genericnerdyusername ];
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ genericnerdyusername ];
platforms = lib.platforms.linux;
};
}

View File

@ -39,11 +39,11 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/applications
'';
meta = with lib; {
meta = {
homepage = "https://locomalito.com/abbaye_des_morts.php";
description = "Retro arcade video game";
mainProgram = "abbayev2";
license = licenses.gpl3;
maintainers = [ maintainers.marius851000 ];
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ marius851000 ];
};
}

View File

@ -34,12 +34,12 @@ buildGoModule rec {
--zsh <($out/bin/abbreviate completion zsh)
'';
meta = with lib; {
meta = {
description = "Shorten your strings using common abbreviations";
mainProgram = "abbreviate";
homepage = "https://github.com/dnnrly/abbreviate";
changelog = "https://github.com/dnnrly/abbreviate/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ figsoda ];
};
}

View File

@ -29,15 +29,15 @@ stdenv.mkDerivation (finalAttrs: {
# needed by yosys
passthru.rev = finalAttrs.src.rev;
meta = with lib; {
meta = {
description = "Tool for squential logic synthesis and formal verification";
homepage = "https://people.eecs.berkeley.edu/~alanmi/abc";
license = licenses.mit;
maintainers = with maintainers; [
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
thoughtpolice
Luflosi
];
mainProgram = "abc";
platforms = platforms.unix;
platforms = lib.platforms.unix;
};
})

View File

@ -40,12 +40,12 @@ stdenv.mkDerivation (finalAttrs: {
};
};
meta = with lib; {
meta = {
homepage = "http://moinejf.free.fr/";
license = licenses.lgpl3Plus;
license = lib.licenses.lgpl3Plus;
description = "Command line program which converts ABC to music sheet in PostScript or SVG format";
platforms = platforms.unix;
maintainers = [ maintainers.dotlambda ];
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ dotlambda ];
mainProgram = "abcm2ps";
};
})

View File

@ -53,12 +53,12 @@ stdenv.mkDerivation {
})
];
meta = with lib; {
meta = {
homepage = "http://brain-dump.org/projects/abduco";
license = licenses.isc;
license = lib.licenses.isc;
description = "Allows programs to be run independently from its controlling terminal";
maintainers = with maintainers; [ pSub ];
platforms = platforms.unix;
maintainers = with lib.maintainers; [ pSub ];
platforms = lib.platforms.unix;
mainProgram = "abduco";
};
}

View File

@ -28,12 +28,12 @@ stdenv.mkDerivation rec {
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
meta = {
homepage = "https://lvc.github.io/abi-compliance-checker";
description = "Tool for checking backward API/ABI compatibility of a C/C++ library";
mainProgram = "abi-compliance-checker";
license = licenses.lgpl21;
maintainers = [ maintainers.bhipple ];
platforms = platforms.all;
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ bhipple ];
platforms = lib.platforms.all;
};
}

View File

@ -36,12 +36,12 @@ stdenv.mkDerivation rec {
preBuild = "mkdir -p $out";
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
meta = {
homepage = "https://github.com/lvc/abi-dumper";
description = "Dump ABI of an ELF object containing DWARF debug info";
mainProgram = "abi-dumper";
license = licenses.lgpl21;
maintainers = [ maintainers.bhipple ];
platforms = platforms.all;
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ bhipple ];
platforms = lib.platforms.all;
};
}

View File

@ -74,13 +74,13 @@ stdenv.mkDerivation rec {
rev-prefix = "release-";
};
meta = with lib; {
meta = {
description = "Word processing program, similar to Microsoft Word";
mainProgram = "abiword";
homepage = "https://gitlab.gnome.org/World/AbiWord/";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
pSub
ylwghst
sna

View File

@ -55,11 +55,11 @@ stdenv.mkDerivation rec {
}
'';
meta = with lib; {
meta = {
homepage = "https://github.com/ggrandou/abootimg";
description = "Manipulate Android Boot Images";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.flokli ];
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ flokli ];
};
}

View File

@ -49,12 +49,12 @@ stdenv.mkDerivation rec {
"-DSOAPYSDR=ON"
];
meta = with lib; {
meta = {
description = "DAB/DAB+ radio application";
homepage = "https://github.com/KejPi/AbracaDABra";
platforms = platforms.linux;
license = licenses.mit;
maintainers = [ maintainers.markuskowa ];
platforms = lib.platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ markuskowa ];
mainProgram = "AbracaDABra";
};
}

View File

@ -30,12 +30,12 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "ACS script compiler for use with ZDoom and Hexen";
homepage = "https://zdoom.org/wiki/ACC";
license = licenses.activision;
maintainers = with maintainers; [ emilytrau ];
platforms = platforms.all;
license = lib.licenses.activision;
maintainers = with lib.maintainers; [ emilytrau ];
platforms = lib.platforms.all;
mainProgram = "acc";
};
})

View File

@ -22,10 +22,10 @@ python3Packages.buildPythonApplication {
setuptools
];
meta = with lib; {
meta = {
description = "Architecture-level energy/area estimator for accelerator designs";
license = licenses.mit;
license = lib.licenses.mit;
homepage = "https://accelergy.mit.edu/";
maintainers = with maintainers; [ gdinh ];
maintainers = with lib.maintainers; [ gdinh ];
};
}

View File

@ -100,12 +100,12 @@ stdenv.mkDerivation rec {
patchShebangs meson_post_install.py
'';
meta = with lib; {
meta = {
description = "D-Bus interface for user account query and manipulation";
homepage = "https://www.freedesktop.org/wiki/Software/AccountsService";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ pSub ];
teams = [ teams.freedesktop ];
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ pSub ];
teams = with lib.teams; [ freedesktop ];
platforms = lib.platforms.linux;
};
}

View File

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with lib; {
meta = {
description = "GNU Accounting Utilities, login and process accounting utilities";
longDescription = ''
@ -25,11 +25,11 @@ stdenv.mkDerivation rec {
execution statistics.
'';
license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
homepage = "https://www.gnu.org/software/acct/";
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
maintainers = with lib.maintainers; [ pSub ];
platforms = lib.platforms.linux;
};
}

View File

@ -26,12 +26,12 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Program for computing the AccurateRip checksum of singletrack WAV files";
homepage = "https://github.com/leo-bogert/accuraterip-checksum";
license = licenses.gpl3;
maintainers = [ ];
platforms = with platforms; linux;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ ];
platforms = lib.platforms.linux;
mainProgram = "accuraterip-checksum";
};
}

View File

@ -41,12 +41,12 @@ stdenv.mkDerivation rec {
> include/makeinclude/platform_macros.GNU
'';
meta = with lib; {
meta = {
homepage = "https://www.dre.vanderbilt.edu/~schmidt/ACE.html";
description = "ADAPTIVE Communication Environment";
mainProgram = "ace_gperf";
license = licenses.doc;
maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
license = lib.licenses.doc;
maintainers = with lib.maintainers; [ nico202 ];
platforms = lib.platforms.linux;
};
}

View File

@ -66,11 +66,11 @@ stdenv.mkDerivation {
dune install --prefix $out --libdir $OCAMLFIND_DESTDIR
'';
meta = with lib; {
meta = {
homepage = "https://acg.loria.fr/";
description = "Toolkit for developing ACG signatures and lexicon";
license = licenses.cecill20;
license = lib.licenses.cecill20;
inherit (ocamlPackages.ocaml.meta) platforms;
maintainers = [ maintainers.jirkamarsik ];
maintainers = with lib.maintainers; [ jirkamarsik ];
};
}

View File

@ -37,11 +37,11 @@ python3.pkgs.buildPythonPackage {
"acltoolkit"
];
meta = with lib; {
meta = {
description = "ACL abuse swiss-knife";
mainProgram = "acltoolkit";
homepage = "https://github.com/zblurx/acltoolkit";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}

View File

@ -25,12 +25,12 @@ stdenv.mkDerivation rec {
makeFlags = [ "BINDIR=$(out)/bin" ];
meta = with lib; {
meta = {
description = "Multi-platform cross assembler for 6502/6510/65816 CPUs";
mainProgram = "acme";
homepage = "https://sourceforge.net/projects/acme-crossass/";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ OPNA2608 ];
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ OPNA2608 ];
};
}

View File

@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
cp -r README samples $out/share/doc/actkbd
'';
meta = with lib; {
meta = {
description = "Keyboard shortcut daemon";
longDescription = ''
actkbd is a simple daemon that binds actions to keyboard events
@ -32,9 +32,9 @@ stdenv.mkDerivation rec {
recognises key combinations and can handle press, repeat and
release events.
'';
license = licenses.gpl2Only;
license = lib.licenses.gpl2Only;
homepage = "http://users.softlab.ece.ntua.gr/~thkala/projects/actkbd/";
platforms = platforms.linux;
platforms = lib.platforms.linux;
mainProgram = "actkbd";
};
}

View File

@ -41,11 +41,11 @@ stdenvNoCC.mkDerivation {
runHook postFixup
'';
meta = with lib; {
meta = {
description = "LDAP based Active Directory user and group enumeration tool";
homepage = "https://github.com/CroweCybersecurity/ad-ldap-enum";
license = licenses.mit;
maintainers = with maintainers; [ h7x4 ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ h7x4 ];
platforms = python3.meta.platforms;
mainProgram = "ad-ldap-enum";
};

View File

@ -33,12 +33,12 @@ python3.pkgs.buildPythonApplication rec {
pythonImportsCheck = [ "ad_miner" ];
meta = with lib; {
meta = {
description = "Active Directory audit tool that leverages cypher queries to crunch data from Bloodhound";
homepage = "https://github.com/Mazars-Tech/AD_Miner";
changelog = "https://github.com/Mazars-Tech/AD_Miner/blob/${src.tag}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "AD-miner";
};
}

View File

@ -25,11 +25,11 @@ buildPythonApplication rec {
# No tests
doCheck = false;
meta = with lib; {
meta = {
homepage = "https://github.com/pycampers/ampy";
license = licenses.mit;
license = lib.licenses.mit;
description = "Utility to interact with a MicroPython board over a serial connection";
maintainers = [ ];
maintainers = with lib.maintainers; [ ];
mainProgram = "ampy";
};
}

View File

@ -27,14 +27,14 @@ stdenv.mkDerivation rec {
];
buildInputs = [ glib ];
meta = with lib; {
meta = {
description = "Wallpaper collection for adapta-project";
homepage = "https://github.com/adapta-project/adapta-backgrounds";
license = with licenses; [
license = with lib.licenses; [
gpl2
cc-by-sa-40
];
platforms = platforms.all;
maintainers = with maintainers; [ romildo ];
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ romildo ];
};
}

View File

@ -54,14 +54,14 @@ stdenv.mkDerivation rec {
"--disable-unity"
];
meta = with lib; {
meta = {
description = "Adaptive GTK theme based on Material Design Guidelines";
homepage = "https://github.com/adapta-project/adapta-gtk-theme";
license = with licenses; [
license = with lib.licenses; [
gpl2
cc-by-sa-30
];
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ romildo ];
};
}

View File

@ -162,11 +162,11 @@ stdenv.mkDerivation (finalAttrs: {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
homepage = "https://github.com/AdaptiveCpp/AdaptiveCpp";
description = "Multi-backend implementation of SYCL for CPUs and GPUs";
mainProgram = "acpp";
maintainers = with maintainers; [ yboettcher ];
license = licenses.bsd2;
maintainers = with lib.maintainers; [ yboettcher ];
license = lib.licenses.bsd2;
};
})

View File

@ -36,11 +36,11 @@ python3.pkgs.buildPythonApplication {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Python-based tool designed to automate the process of discovering and exploiting Active Directory Certificate Services (ADCS) vulnerabilities";
homepage = "https://github.com/grimlockx/ADCSKiller";
license = licenses.mit;
maintainers = with maintainers; [ exploitoverload ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ exploitoverload ];
mainProgram = "ADCSKiller";
};
}

View File

@ -22,12 +22,12 @@ python3Packages.buildPythonApplication rec {
doCheck = false;
pythonImportsCheck = [ "addic7ed_cli" ];
meta = with lib; {
meta = {
description = "Commandline access to addic7ed subtitles";
homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli";
license = licenses.mit;
maintainers = with maintainers; [ aethelz ];
platforms = platforms.unix;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aethelz ];
platforms = lib.platforms.unix;
mainProgram = "addic7ed";
};
}

View File

@ -29,11 +29,11 @@ buildGoModule rec {
subPackages = [ "." ];
meta = with lib; {
meta = {
description = "Ensures source code files have copyright license headers by scanning directory patterns recursively";
homepage = "https://github.com/google/addlicense";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
mainProgram = "addlicense";
};
}