treewide: avoid using singleton lists for licenses (#535754)
This commit is contained in:
@@ -180,7 +180,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
description = "Native debugger extension for VSCode based on LLDB";
|
||||
homepage = "https://github.com/vadimcn/vscode-lldb";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
description = "Small and simple terminal editor core that is meant to be extended through a powerful plugin architecture";
|
||||
homepage = "https://your-editor.org/";
|
||||
changelog = "https://github.com/your-editor/yed/blob/${finalAttrs.version}/CHANGELOG.md";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.unix;
|
||||
mainProgram = "yed";
|
||||
};
|
||||
|
||||
@@ -365,7 +365,7 @@ stdenv.mkDerivation (
|
||||
meta = {
|
||||
inherit version;
|
||||
homepage = "https://www.winehq.org/";
|
||||
license = with lib.licenses; [ lgpl21Plus ];
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
sourceProvenance = with lib.sourceTypes; [
|
||||
fromSource
|
||||
binaryNativeCode # mono, gecko
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
description = "Microsoft replacement fonts by the Wine project";
|
||||
homepage = "https://wiki.winehq.org/Create_Fonts";
|
||||
license = with lib.licenses; [ lgpl21Plus ];
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = with lib.maintainers; [
|
||||
avnik
|
||||
|
||||
@@ -209,7 +209,7 @@ lib.makeScope pkgs.newScope (
|
||||
broken = gimp.apiVersion != "2.0";
|
||||
description = "GIMP plug-in to do the fourier transform";
|
||||
homepage = "https://people.via.ecp.fr/~remi/soft/gimp/gimp_plugin_en.php3#fourier";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -243,7 +243,7 @@ lib.makeScope pkgs.newScope (
|
||||
broken = lib.versionOlder gimp.version "3";
|
||||
description = "Suite of gimp plugins for texture synthesis";
|
||||
homepage = "https://github.com/bootchk/resynthesizer";
|
||||
license = [ lib.licenses.gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ python3.pkgs.buildPythonApplication {
|
||||
meta = {
|
||||
description = "Inkscape extension for machine embroidery design";
|
||||
homepage = "https://inkstitch.org/";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [
|
||||
tropf
|
||||
pluiedev
|
||||
|
||||
@@ -32,7 +32,7 @@ buildGoModule rec {
|
||||
meta = {
|
||||
description = "Helm plugin which maps deprecated or removed Kubernetes APIs in a release to supported APIs";
|
||||
homepage = "https://github.com/helm/helm-mapkubeapis";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ aos ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -35,7 +35,7 @@ let
|
||||
meta = {
|
||||
homepage = "https://github.com/kodi-game/controller-topology-project";
|
||||
description = "Models how controllers connect to and map to each other for all gaming history";
|
||||
license = with lib.licenses; [ odbl ];
|
||||
license = lib.licenses.odbl;
|
||||
teams = [ lib.teams.kodi ];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
|
||||
meta = {
|
||||
description = "Network A/V plugin for OBS Studio (formerly obs-ndi)";
|
||||
homepage = "https://github.com/DistroAV/DistroAV";
|
||||
license = with lib.licenses; [ gpl2 ];
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = with lib.maintainers; [ globule655 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Apple's actool reimplementation";
|
||||
homepage = "https://github.com/viraptor/actool";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "actool";
|
||||
maintainers = [ lib.maintainers.viraptor ];
|
||||
};
|
||||
|
||||
@@ -17,7 +17,7 @@ buildGoModule (finalAttrs: {
|
||||
description = "TUI-based file manager for the Android Debug Bridge";
|
||||
homepage = "https://github.com/darkhz/adbtuifm";
|
||||
changelog = "https://github.com/darkhz/adbtuifm/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ daru-san ];
|
||||
mainProgram = "adbtuifm";
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
|
||||
@@ -46,7 +46,7 @@ python3.pkgs.buildPythonApplication {
|
||||
description = "Tool to find misconfiguration through LDAP";
|
||||
mainProgram = "adenum";
|
||||
homepage = "https://github.com/SecuProject/ADenum";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@ buildGoModule (finalAttrs: {
|
||||
changelog = "https://github.com/m0n1x90/ADReaper/releases/tag/ADReaperv${finalAttrs.version}";
|
||||
# Upstream doesn't have a license yet
|
||||
# https://github.com/AidenPearce369/ADReaper/issues/2
|
||||
license = with lib.licenses; [ unfree ];
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "ADReaper";
|
||||
};
|
||||
|
||||
@@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
|
||||
mainProgram = "aiodnsbrute";
|
||||
homepage = "https://github.com/blark/aiodnsbrute";
|
||||
changelog = "https://github.com/blark/aiodnsbrute/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -42,7 +42,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
'';
|
||||
homepage = "https://v2.airbuddy.app";
|
||||
changelog = "https://support.airbuddy.app/articles/airbuddy-2-changelog";
|
||||
license = with lib.licenses; [ unfree ];
|
||||
license = lib.licenses.unfree;
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
maintainers = with lib.maintainers; [ stepbrobd ];
|
||||
platforms = [
|
||||
|
||||
@@ -100,7 +100,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
description = "Aleph One is the open source continuation of Bungie’s Marathon 2 game engine";
|
||||
mainProgram = "alephone";
|
||||
homepage = "https://alephone.lhowon.org/";
|
||||
license = [ lib.licenses.gpl3 ];
|
||||
license = lib.licenses.gpl3;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Code search-and-replace tool";
|
||||
homepage = "https://github.com/dalance/amber";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.bdesham ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -27,7 +27,7 @@ buildGoModule (finalAttrs: {
|
||||
description = "Fancy terminal browser for the Gemini protocol";
|
||||
mainProgram = "amfora";
|
||||
homepage = "https://github.com/makew0rld/amfora";
|
||||
license = with lib.licenses; [ gpl3 ];
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ deifactor ];
|
||||
changelog = "https://github.com/makew0rld/amfora/blob/v${finalAttrs.version}/CHANGELOG.md";
|
||||
};
|
||||
|
||||
@@ -55,7 +55,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Auto Nix GC Root Retention";
|
||||
homepage = "https://github.com/linyinfeng/angrr";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ yinfeng ];
|
||||
platforms = with lib.platforms; linux ++ darwin;
|
||||
mainProgram = "angrr";
|
||||
|
||||
@@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
homepage = "https://gitlab.com/HolyPangolin/animatch/";
|
||||
description = "Cute match three game for the Librem 5 smartphone";
|
||||
mainProgram = "animatch";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ colinsane ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -44,7 +44,7 @@ rustPlatform.buildRustPackage {
|
||||
meta = {
|
||||
description = "Standalone official anki sync server";
|
||||
homepage = "https://apps.ankiweb.net";
|
||||
license = with lib.licenses; [ agpl3Plus ];
|
||||
license = lib.licenses.agpl3Plus;
|
||||
maintainers = with lib.maintainers; [ martinetd ];
|
||||
mainProgram = "anki-sync-server";
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
the colors and styles, such as bold or italic.
|
||||
'';
|
||||
homepage = "https://github.com/phip1611/ansi-escape-sequences-cli";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ phip1611 ];
|
||||
mainProgram = "ansi";
|
||||
};
|
||||
|
||||
@@ -70,7 +70,7 @@ rustPlatform.buildRustPackage {
|
||||
homepage = "https://antelang.org/";
|
||||
description = "Low-level functional language for exploring refinement types, lifetime inference, and algebraic effects";
|
||||
mainProgram = "ante";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ehllie ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://www.antiprism.com";
|
||||
description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "Flex SDK for Adobe Flash / ActionScript";
|
||||
homepage = "https://flex.apache.org/";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dywedir ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -76,7 +76,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
* compare two APKs with different signatures (requires apksigner)
|
||||
'';
|
||||
homepage = "https://github.com/obfusk/apksigcopier";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ obfusk ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -55,7 +55,7 @@ python3Packages.buildPythonApplication {
|
||||
meta = {
|
||||
homepage = "https://github.com/rickysarraf/apt-offline";
|
||||
description = "Offline APT package manager";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
mainProgram = "apt-offline";
|
||||
maintainers = [ ];
|
||||
};
|
||||
|
||||
@@ -22,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
homepage = "https://github.com/kpcyrd/apt-swarm";
|
||||
changelog = "https://github.com/kpcyrd/apt-swarm/releases/tag/v${finalAttrs.version}";
|
||||
mainProgram = "apt-swarm";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ kpcyrd ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
||||
@@ -108,7 +108,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
homepage = "https://salsa.debian.org/apt-team/apt";
|
||||
description = "Command-line package management tools used on Debian-based systems";
|
||||
changelog = "https://salsa.debian.org/apt-team/apt/-/raw/${finalAttrs.version}/debian/changelog";
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
mainProgram = "apt";
|
||||
maintainers = with lib.maintainers; [ VZstless ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
and direct access to various host resources including sound, disk drives,
|
||||
optical storage devices (CD/DVD-ROMs), parallel port and more.
|
||||
'';
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
mainProgram = "aranym";
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.unix;
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation {
|
||||
meta = {
|
||||
description = "Dark theme deeply inspired by the Ayu Dark color palette";
|
||||
homepage = "https://github.com/Mrcuve0/Aritim-Dark";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [ lib.maintainers.pasqui23 ];
|
||||
};
|
||||
|
||||
@@ -60,7 +60,7 @@ python3Packages.buildPythonPackage rec {
|
||||
mainProgram = "arouteserver";
|
||||
homepage = "https://github.com/pierky/arouteserver";
|
||||
changelog = "https://github.com/pierky/arouteserver/blob/v${version}/CHANGES.rst";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [
|
||||
marcel
|
||||
johannwagner
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "UNIX arp cache update utility";
|
||||
homepage = "http://www.arpoison.net/";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = [ lib.maintainers.michalrus ];
|
||||
platforms = lib.platforms.unix;
|
||||
mainProgram = "arpoison";
|
||||
|
||||
@@ -38,7 +38,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
|
||||
meta = {
|
||||
description = "Tool to generate commands for security and network tools";
|
||||
homepage = "https://github.com/Orange-Cyberdefense/arsenal";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "arsenal";
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage {
|
||||
meta = {
|
||||
description = "Print a list of paths as a tree of paths";
|
||||
homepage = "https://github.com/jez/as-tree";
|
||||
license = with lib.licenses; [ blueOak100 ];
|
||||
license = lib.licenses.blueOak100;
|
||||
maintainers = with lib.maintainers; [ jshholland ];
|
||||
mainProgram = "as-tree";
|
||||
};
|
||||
|
||||
@@ -18,7 +18,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Create asciinema videos from a text file";
|
||||
homepage = "https://github.com/garbas/asciinema-scenario/";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "asciinema-scenario";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -52,7 +52,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
computer users working with the command-line, such as developers or
|
||||
system administrators.
|
||||
'';
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
mainProgram = "asciinema";
|
||||
maintainers = with lib.maintainers; [
|
||||
jiriks74
|
||||
|
||||
@@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
'';
|
||||
homepage = "https://github.com/nitefood/asn";
|
||||
changelog = "https://github.com/nitefood/asn/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ devhell ];
|
||||
mainProgram = "asn";
|
||||
};
|
||||
|
||||
@@ -31,6 +31,6 @@ buildGoModule (finalAttrs: {
|
||||
fromSource
|
||||
binaryNativeCode
|
||||
];
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
WinCE, Sega Dreamcast, Android and other systems supported by the SDL
|
||||
library.
|
||||
'';
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
will compile on a variety of systems (Linux, Solaris, Irix).
|
||||
'';
|
||||
maintainers = [ ];
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -41,7 +41,7 @@ buildGoModule (finalAttrs: {
|
||||
homepage = "https://github.com/AthanorLabs/atomic-swap";
|
||||
changelog = "https://github.com/AthanorLabs/atomic-swap/releases/tag/v${finalAttrs.version}";
|
||||
description = "ETH-XMR atomic swap implementation";
|
||||
license = with lib.licenses; [ lgpl3Only ];
|
||||
license = lib.licenses.lgpl3Only;
|
||||
maintainers = with lib.maintainers; [
|
||||
happysalada
|
||||
lord-valen
|
||||
|
||||
@@ -63,7 +63,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
|
||||
homepage = "https://github.com/CleoMenezesJr/Aurea";
|
||||
mainProgram = "aurea";
|
||||
platforms = lib.platforms.linux;
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = [ ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -96,7 +96,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
|
||||
description = "Desktop automation utility for Linux and X11";
|
||||
homepage = "https://github.com/autokey/autokey";
|
||||
changelog = "https://github.com/autokey/autokey/releases/tag/${finalAttrs.src.tag}";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ iamanaws ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
|
||||
@@ -203,7 +203,7 @@ stdenvNoCC.mkDerivation (
|
||||
|
||||
meta = {
|
||||
homepage = "https://avaloniaui.net/";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ corngood ];
|
||||
description = "Cross-platform UI framework for dotnet";
|
||||
sourceProvenance = with lib.sourceTypes; [
|
||||
|
||||
@@ -23,7 +23,7 @@ flutter338.buildFlutterApplication {
|
||||
meta = {
|
||||
description = "Badge Magic with LEDs - mobile and desktop app";
|
||||
homepage = "https://github.com/fossasia/badgemagic-app";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.matthewcroughan ];
|
||||
platforms = [
|
||||
"aarch64-linux"
|
||||
|
||||
@@ -46,7 +46,7 @@ buildGoModule (finalAttrs: {
|
||||
likelihood that a compromised Operator would be able to obtain full
|
||||
cluster permissions.
|
||||
'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
jk
|
||||
];
|
||||
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://lgames.sourceforge.io/Barrage/";
|
||||
description = "Destructive action game";
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
mainProgram = "barrage";
|
||||
maintainers = [ ];
|
||||
inherit (SDL.meta) platforms;
|
||||
|
||||
@@ -62,7 +62,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
changelog = "https://downloads.macbartender.com/B2/updates/${
|
||||
builtins.replaceStrings [ "." ] [ "-" ] finalAttrs.version
|
||||
}/rnotes.html";
|
||||
license = [ lib.licenses.unfree ];
|
||||
license = lib.licenses.unfree;
|
||||
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
||||
maintainers = with lib.maintainers; [
|
||||
stepbrobd
|
||||
|
||||
@@ -41,7 +41,7 @@ python3Packages.buildPythonApplication rec {
|
||||
description = "Style enforcement for bash programs";
|
||||
mainProgram = "bashate";
|
||||
homepage = "https://opendev.org/openstack/bashate";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
teams = [ lib.teams.openstack ];
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Language Server Protocol (LSP) for beancount files";
|
||||
mainProgram = "beancount-language-server";
|
||||
homepage = "https://github.com/polarmutex/beancount-language-server";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ polarmutex ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -51,7 +51,7 @@ buildGoModule (finalAttrs: {
|
||||
|
||||
Bee is a Swarm node implementation, written in Go.
|
||||
'';
|
||||
license = with lib.licenses; [ bsd3 ];
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = [ ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -163,7 +163,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "Software modular synth with controllers support, scripting and VST";
|
||||
homepage = "https://www.bespokesynth.com/";
|
||||
license = [ lib.licenses.gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [
|
||||
astro
|
||||
tobiasBora
|
||||
|
||||
@@ -43,7 +43,7 @@ buildGoModule (finalAttrs: {
|
||||
in realtime, sniff for credentials and much more.
|
||||
'';
|
||||
homepage = "https://www.bettercap.org/";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
mainProgram = "bettercap";
|
||||
# Broken on darwin for Go toolchain > 1.22, with error:
|
||||
# 'link: golang.org/x/net/internal/socket: invalid reference to syscall.recvmsg'
|
||||
|
||||
@@ -50,7 +50,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
description = "Unlock your displays on your Mac! Flexible HiDPI scaling, XDR/HDR extra brightness, virtual screens, DDC control, extra dimming, PIP/streaming, EDID override and lots more";
|
||||
homepage = "https://betterdisplay.pro/";
|
||||
changelog = "https://github.com/waydabber/BetterDisplay/releases/tag/v${finalAttrs.version}";
|
||||
license = [ lib.licenses.unfree ];
|
||||
license = lib.licenses.unfree;
|
||||
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
||||
maintainers = with lib.maintainers; [ DimitarNestorov ];
|
||||
platforms = lib.platforms.darwin;
|
||||
|
||||
@@ -54,7 +54,7 @@ stdenv.mkDerivation {
|
||||
bic This a project that allows developers to explore and test C-APIs using a
|
||||
read eval print loop, also known as a REPL.
|
||||
'';
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
homepage = "https://github.com/hexagonal-sun/bic";
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ hexagonal-sun ];
|
||||
|
||||
@@ -26,7 +26,7 @@ buildGoModule (finalAttrs: {
|
||||
meta = {
|
||||
description = "Command-line tool for git";
|
||||
homepage = "https://github.com/chriswalz/bit";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "bit";
|
||||
};
|
||||
|
||||
@@ -29,7 +29,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "High performance C++ math library";
|
||||
homepage = "https://bitbucket.org/blaze-lib/blaze";
|
||||
license = with lib.licenses; [ bsd3 ];
|
||||
license = lib.licenses.bsd3;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -134,7 +134,7 @@ buildDotnetModule rec {
|
||||
meta = {
|
||||
description = "Open-source, cross-platform, stand-alone, Network Renderer for Blender";
|
||||
homepage = "https://github.com/LogicReinc/LogicReinc.BlendFarm";
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ gador ];
|
||||
mainProgram = "blendfarm-nix";
|
||||
platforms = lib.platforms.unix;
|
||||
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "Command line client for the blink(1) notification light";
|
||||
homepage = "https://blink1.thingm.com/";
|
||||
license = with lib.licenses; [ cc-by-sa-40 ];
|
||||
license = lib.licenses.cc-by-sa-40;
|
||||
maintainers = with lib.maintainers; [ cransom ];
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
mainProgram = "blink1-tool";
|
||||
|
||||
@@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
description = "Open source clone of Panel de Pon (aka Tetris Attack)";
|
||||
broken = stdenv.hostPlatform.isDarwin;
|
||||
changelog = "https://github.com/blockattack/blockattack-game/blob/${finalAttrs.src.rev}/CHANGELOG.md";
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
mainProgram = "blockattack";
|
||||
maintainers = [ ];
|
||||
inherit (SDL2.meta) platforms;
|
||||
|
||||
@@ -90,7 +90,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
BluezALSA if you disable `bluetooth-discover` and `bluez5-discover`
|
||||
modules in PA and configure it to play/capture sound over `bluealsa` PCM.
|
||||
'';
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "bluealsa";
|
||||
maintainers = with lib.maintainers; [ oxij ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://github.com/khvzak/bluez-tools";
|
||||
description = "Set of tools to manage bluetooth devices for linux";
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
mainProgram = "bt-agent";
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.linux;
|
||||
|
||||
@@ -20,7 +20,7 @@ buildGoModule (finalAttrs: {
|
||||
meta = {
|
||||
description = "CLI Browser for BoltDB files";
|
||||
homepage = "https://github.com/br0xen/boltbrowser";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "boltbrowser";
|
||||
};
|
||||
|
||||
@@ -32,7 +32,7 @@ rustPlatform.buildRustPackage {
|
||||
meta = {
|
||||
description = "CLI tool for bountybot.dev";
|
||||
homepage = "https://github.com/ghbountybot/cli";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ andrewgazelka ];
|
||||
mainProgram = "bounty";
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ buildGoModule (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://github.com/txthinking/brook";
|
||||
description = "Cross-platform Proxy/VPN software";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [ xrelkd ];
|
||||
mainProgram = "brook";
|
||||
};
|
||||
|
||||
@@ -87,7 +87,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
homepage = "https://dystroy.org/broot/";
|
||||
changelog = "https://github.com/Canop/broot/releases/tag/v${finalAttrs.version}";
|
||||
maintainers = with lib.maintainers; [ dywedir ];
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "broot";
|
||||
};
|
||||
})
|
||||
|
||||
@@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
|
||||
description = "BTF introspection tool";
|
||||
mainProgram = "btf";
|
||||
homepage = "https://github.com/anakryiko/btfdump";
|
||||
license = with lib.licenses; [ bsd2 ];
|
||||
license = lib.licenses.bsd2;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
description = "Port of Bugdom, a 1999 Macintosh game by Pangea Software, for modern operating systems";
|
||||
homepage = "https://github.com/jorio/Bugdom";
|
||||
license = with lib.licenses; [ cc-by-sa-40 ];
|
||||
license = lib.licenses.cc-by-sa-40;
|
||||
maintainers = with lib.maintainers; [ lux ];
|
||||
mainProgram = "Bugdom";
|
||||
platforms = lib.platforms.unix;
|
||||
|
||||
@@ -79,6 +79,6 @@ maven.buildMavenPackage rec {
|
||||
fromSource
|
||||
binaryBytecode # deps
|
||||
];
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
|
||||
implemented with a new module.
|
||||
'';
|
||||
homepage = "https://github.com/CANToolz/CANToolz";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -33,7 +33,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Fuzzing and property testing front-end framework for Rust";
|
||||
mainProgram = "cargo-bolero";
|
||||
homepage = "https://github.com/camshaft/bolero";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ ekleog ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Increments the version number of the current project";
|
||||
mainProgram = "cargo-bump";
|
||||
homepage = "https://github.com/wraithan/cargo-bump";
|
||||
license = with lib.licenses; [ isc ];
|
||||
license = lib.licenses.isc;
|
||||
maintainers = with lib.maintainers; [ cafkafk ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Cargo Subcommand for Microsoft HID Flashing Library for UF2 Bootloaders";
|
||||
mainProgram = "cargo-hf2";
|
||||
homepage = "https://lib.rs/crates/cargo-hf2";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ astrobeastie ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -40,7 +40,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
mainProgram = "cargo-leptos";
|
||||
homepage = "https://github.com/leptos-rs/cargo-leptos";
|
||||
changelog = "https://github.com/leptos-rs/cargo-leptos/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ benwis ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Cargo subcommand to see license of dependencies";
|
||||
mainProgram = "cargo-license";
|
||||
homepage = "https://github.com/onur/cargo-license";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
basvandijk
|
||||
matthiasbeyer
|
||||
|
||||
@@ -24,7 +24,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Cargo subcommand for optimizing Rust binaries/libraries with PGO and BOLT";
|
||||
homepage = "https://github.com/kobzol/cargo-pgo";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dannixon ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -20,7 +20,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
mainProgram = "cargo-rdme";
|
||||
homepage = "https://github.com/orium/cargo-rdme";
|
||||
changelog = "https://github.com/orium/cargo-rdme/blob/v${finalAttrs.version}/release-notes.md";
|
||||
license = with lib.licenses; [ mpl20 ];
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
GoldsteinE
|
||||
chrjabs
|
||||
|
||||
@@ -47,7 +47,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Cargo extension to help create, manage, and test RISC Zero projects";
|
||||
mainProgram = "cargo-risczero";
|
||||
homepage = "https://risczero.com";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -34,7 +34,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Cargo subcommand \"rr\": a light wrapper around rr, the time-travelling debugger";
|
||||
mainProgram = "cargo-rr";
|
||||
homepage = "https://github.com/dzfranklin/cargo-rr";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
otavio
|
||||
matthiasbeyer
|
||||
|
||||
@@ -37,7 +37,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
meta = {
|
||||
description = "Create software bill of materials (SBOM) for Rust";
|
||||
homepage = "https://github.com/psastras/sbom-rs";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
matthiasbeyer
|
||||
];
|
||||
|
||||
@@ -42,7 +42,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
mainProgram = "cargo-shear";
|
||||
homepage = "https://github.com/Boshen/cargo-shear";
|
||||
changelog = "https://github.com/Boshen/cargo-shear/blob/v${finalAttrs.version}/CHANGELOG.md";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.cathalmullan ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -27,7 +27,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Utility to produce some Sonar-compatible format from different Rust tools like cargo-clippy cargo-audit or cargo-outdated";
|
||||
mainProgram = "cargo-sonar";
|
||||
homepage = "https://gitlab.com/woshilapin/cargo-sonar";
|
||||
license = [ lib.licenses.mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.jonboh ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -50,7 +50,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "JSON Schema to Rust type converter";
|
||||
homepage = "https://github.com/oxidecomputer/typify";
|
||||
changelog = "https://github.com/oxidecomputer/typify/blob/${finalAttrs.src.tag}/CHANGELOG.adoc";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ iamanaws ];
|
||||
mainProgram = "cargo-typify";
|
||||
};
|
||||
|
||||
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = ''Cargo subcommand "wipe": recursively finds and optionally wipes all "target" or "node_modules" folders'';
|
||||
mainProgram = "cargo-wipe";
|
||||
homepage = "https://github.com/mihai-dinculescu/cargo-wipe";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ otavio ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Cross compile Cargo project to Windows MSVC target with ease";
|
||||
mainProgram = "cargo-xwin";
|
||||
homepage = "https://github.com/rust-cross/cargo-xwin";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ shivaraj-bh ];
|
||||
};
|
||||
})
|
||||
|
||||
@@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
library for Apache Cassandra 2.1+ using exclusively Cassandra’s
|
||||
binary protocol and Cassandra Query Language v3.
|
||||
'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
platforms = lib.platforms.x86_64;
|
||||
homepage = "https://docs.datastax.com/en/developer/cpp-driver/";
|
||||
maintainers = [ lib.maintainers.npatsakula ];
|
||||
|
||||
@@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://github.com/letoram/cat9";
|
||||
description = "User shell for LASH";
|
||||
license = with lib.licenses; [ unlicense ];
|
||||
license = lib.licenses.unlicense;
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
||||
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
|
||||
description = "Extracts plain text from docx files";
|
||||
mainProgram = "catdocx";
|
||||
homepage = "https://github.com/jncraton/catdocx";
|
||||
license = with lib.licenses; [ bsd3 ];
|
||||
license = lib.licenses.bsd3;
|
||||
maintainers = [ lib.maintainers.michalrus ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
||||
@@ -54,7 +54,7 @@ buildGoModule (finalAttrs: {
|
||||
description = "Comic Book converter";
|
||||
homepage = "https://github.com/gen2brain/cbconvert";
|
||||
changelog = "https://github.com/gen2brain/cbconvert/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ jwillikers ];
|
||||
mainProgram = "cbconvert";
|
||||
|
||||
@@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
description = "Grow bonsai trees in your terminal";
|
||||
mainProgram = "cbonsai";
|
||||
homepage = "https://gitlab.com/jallbrit/cbonsai";
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -25,7 +25,7 @@ buildGoModule (finalAttrs: {
|
||||
description = "Container penetration toolkit";
|
||||
homepage = "https://github.com/cdk-team/CDK";
|
||||
changelog = "https://github.com/cdk-team/CDK/releases/tag/v${finalAttrs.version}";
|
||||
license = with lib.licenses; [ gpl2Only ];
|
||||
license = lib.licenses.gpl2Only;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "cdk";
|
||||
broken = stdenv.hostPlatform.isDarwin; # needs to update gopsutil to at least v3.21.3 to include https://github.com/shirou/gopsutil/pull/1042
|
||||
|
||||
@@ -162,7 +162,7 @@ stdenvNoCC.mkDerivation {
|
||||
meta = {
|
||||
inherit downloadPage description;
|
||||
homepage = "https://www.celestegame.com";
|
||||
license = with lib.licenses; [ unfree ];
|
||||
license = lib.licenses.unfree;
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
maintainers = with lib.maintainers; [ ulysseszhan ];
|
||||
platforms = [
|
||||
|
||||
@@ -63,7 +63,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
|
||||
description = "Tool for analysing CloudFormation templates";
|
||||
homepage = "https://github.com/Skyscanner/cfripper";
|
||||
changelog = "https://github.com/Skyscanner/cfripper/releases/tag/${finalAttrs.src.tag}";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "cfripper";
|
||||
};
|
||||
|
||||
@@ -45,7 +45,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
||||
description = "Unofficial CLI for speed.cloudflare.com";
|
||||
homepage = "https://github.com/code-inflation/cfspeedtest";
|
||||
changelog = "https://github.com/code-inflation/cfspeedtest/releases/tag/${finalAttrs.src.tag}";
|
||||
license = with lib.licenses; [ mit ];
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
colemickens
|
||||
stepbrobd
|
||||
|
||||
@@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
homepage = "https://cgns.github.io";
|
||||
downloadPage = "https://github.com/cgns/cgns";
|
||||
changelog = "https://github.com/cgns/cgns/releases/tag/${finalAttrs.src.tag}";
|
||||
license = with lib.licenses; [ zlib ];
|
||||
license = lib.licenses.zlib;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ qbisi ];
|
||||
};
|
||||
|
||||
@@ -44,7 +44,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
|
||||
Think of it as a bootloader for Emacs.
|
||||
'';
|
||||
license = with lib.licenses; [ gpl3Plus ];
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = [ ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
|
||||
@@ -159,6 +159,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
mainProgram = "cherry-studio";
|
||||
platforms = with lib.platforms; linux ++ darwin;
|
||||
maintainers = with lib.maintainers; [ xiaoxiangmoe ];
|
||||
license = with lib.licenses; [ agpl3Only ];
|
||||
license = lib.licenses.agpl3Only;
|
||||
};
|
||||
})
|
||||
|
||||
@@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
meta = {
|
||||
homepage = "https://github.com/jluttine/cholmod-extra";
|
||||
description = "Set of additional routines for SuiteSparse CHOLMOD Module";
|
||||
license = with lib.licenses; [ gpl2Plus ];
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ jluttine ];
|
||||
platforms = with lib.platforms; unix;
|
||||
};
|
||||
|
||||
@@ -20,7 +20,7 @@ buildGoModule (finalAttrs: {
|
||||
meta = {
|
||||
description = "CLI to search for sensitive services/files/folders";
|
||||
homepage = "https://github.com/michelin/ChopChop";
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user