Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions nixos/modules/hardware/cpu/x86-msr.nix
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ in
'';
};

meta = with lib; {
maintainers = with maintainers; [ lorenzleutgeb ];
meta = {
maintainers = with lib.maintainers; [ lorenzleutgeb ];
};
}
4 changes: 2 additions & 2 deletions nixos/modules/hardware/raid/hpsa.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ let

dontStrip = true;

meta = with lib; {
meta = {
description = "HP Smart Array CLI";
homepage = "https://downloads.linux.hpe.com/SDR/downloads/MCP/Ubuntu/pool/non-free/";
license = licenses.unfreeRedistributable;
license = lib.licenses.unfreeRedistributable;
platforms = [ "x86_64-linux" ];
maintainers = [ ];
};
Expand Down
4 changes: 2 additions & 2 deletions nixos/modules/services/desktops/geoclue2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ in
};
};

meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
meta = {
maintainers = [ ] ++ lib.teams.pantheon.members;
};
}
4 changes: 2 additions & 2 deletions nixos/modules/services/desktops/zeitgeist.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
}:
{

meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
meta = {
maintainers = [ ] ++ lib.teams.pantheon.members;
};

###### interface
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ stdenv.mkDerivation {
dontStrip = true;
dontPatchELF = true;

meta = with lib; {
meta = {
description = "Brother brscan4 sane backend driver etc files";
homepage = "http://www.brother.com";
platforms = platforms.linux;
license = licenses.unfree;
maintainers = with maintainers; [ jraygauthier ];
platforms = lib.platforms.linux;
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ jraygauthier ];
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ stdenv.mkDerivation {

dontInstall = true;

meta = with lib; {
meta = {
description = "Brother brscan5 sane backend driver etc files";
homepage = "https://www.brother.com";
platforms = platforms.linux;
license = licenses.unfree;
maintainers = with maintainers; [ mattchrist ];
platforms = lib.platforms.linux;
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ mattchrist ];
};
}
4 changes: 2 additions & 2 deletions nixos/modules/services/misc/xmrig.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ in
};
};

meta = with lib; {
maintainers = with maintainers; [ ratsclub ];
meta = {
maintainers = with lib.maintainers; [ ratsclub ];
};
}
4 changes: 2 additions & 2 deletions nixos/modules/services/web-apps/pretalx.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ let
in

{
meta = with lib; {
maintainers = with maintainers; [ hexa ] ++ teams.c3d2.members;
meta = {
maintainers = with lib.maintainers; [ hexa ] ++ lib.teams.c3d2.members;
};

options.services.pretalx = {
Expand Down
4 changes: 2 additions & 2 deletions nixos/modules/services/web-apps/pretix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ let
withRedis = cfg.settings.redis.location != null;
in
{
meta = with lib; {
maintainers = with maintainers; [ hexa ];
meta = {
maintainers = with lib.maintainers; [ hexa ];
};

options.services.pretix = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication {
chmod +x $out/bin/set-session
'';

meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
meta = {
maintainers = [ ] ++ lib.teams.pantheon.members;
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ let

in
{
meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
meta = {
maintainers = [ ] ++ lib.teams.pantheon.members;
};

options = {
Expand Down
4 changes: 2 additions & 2 deletions nixos/modules/services/x11/display-managers/lightdm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ let

in
{
meta = with lib; {
maintainers = with maintainers; [ ] ++ teams.pantheon.members;
meta = {
maintainers = [ ] ++ lib.teams.pantheon.members;
};

# Note: the order in which lightdm greeter modules are imported
Expand Down
2 changes: 1 addition & 1 deletion nixos/tests/systemd-networkd-bridge.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
and each link is labeled with the VLAN we are assigning it in
virtualisation.vlans.
*/
with builtins;

let
commonConf = {
systemd.services.systemd-networkd.environment.SYSTEMD_LOG_LEVEL = "debug";
Expand Down
6 changes: 3 additions & 3 deletions pkgs/applications/audio/bitwig-studio/bitwig-studio4.nix
Original file line number Diff line number Diff line change
Expand Up @@ -105,17 +105,17 @@ stdenv.mkDerivation rec {
done
'';

meta = with lib; {
meta = {
description = "Digital audio workstation";
longDescription = ''
Bitwig Studio is a multi-platform music-creation system for
production, performance and DJing, with a focus on flexible
editing tools and a super-fast workflow.
'';
homepage = "https://www.bitwig.com/";
license = licenses.unfree;
license = lib.licenses.unfree;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
bfortz
michalrus
mrVanDalo
Expand Down
8 changes: 4 additions & 4 deletions pkgs/applications/audio/chuck/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ stdenv.mkDerivation rec {
];
buildFlags = [ (if stdenv.hostPlatform.isDarwin then "mac" else "linux-alsa") ];

meta = with lib; {
meta = {
description = "Programming language for real-time sound synthesis and music creation";
homepage = "http://chuck.cs.princeton.edu";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ ftrvxmtrx ];
license = lib.licenses.gpl2;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ ftrvxmtrx ];
mainProgram = "chuck";
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/cmus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ stdenv.mkDerivation rec {

makeFlags = [ "LD=$(CC)" ];

meta = with lib; {
meta = {
description = "Small, fast and powerful console music player for Linux and *BSD";
homepage = "https://cmus.github.io/";
license = licenses.gpl2;
maintainers = [ maintainers.oxij ];
platforms = platforms.linux ++ platforms.darwin;
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.oxij ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}
6 changes: 3 additions & 3 deletions pkgs/applications/audio/codecserver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ stdenv.mkDerivation rec {
--replace-fail '=''${exec_prefix}//' '=/'
'';

meta = with lib; {
meta = {
homepage = "https://github.com/jketterl/codecserver";
description = "Modular audio codec server";
license = licenses.gpl3Only;
platforms = platforms.unix;
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
mainProgram = "codecserver";
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/deadbeef/plugins/headerbar-gtk3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ stdenv.mkDerivation rec {

preConfigure = "./autogen.sh";

meta = with lib; {
meta = {
description = "Plug-in that adds GTK 3 header bar to the DeaDBeeF music player";
homepage = "https://github.com/saivert/ddb_misc_headerbar_GTK3";
license = licenses.gpl2Plus;
maintainers = [ maintainers.jtojnar ];
platforms = platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.jtojnar ];
platforms = lib.platforms.linux;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/deadbeef/plugins/lyricbar.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ stdenv.mkDerivation {

buildFlags = [ "gtk3" ];

meta = with lib; {
meta = {
description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics";
homepage = "https://github.com/C0rn3j/deadbeef-lyricbar";
license = licenses.mit;
maintainers = [ maintainers.jtojnar ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jtojnar ];
platforms = lib.platforms.linux;
};
}
6 changes: 3 additions & 3 deletions pkgs/applications/audio/deadbeef/plugins/mpris2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ stdenv.mkDerivation (finalAttrs: {
glib
];

meta = with lib; {
meta = {
description = "MPRISv2 plugin for the DeaDBeeF music player";
homepage = "https://github.com/DeaDBeeF-Player/deadbeef-mpris2-plugin/";
license = licenses.gpl2;
platforms = platforms.linux;
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = [ ];
};
})
8 changes: 4 additions & 4 deletions pkgs/applications/audio/deadbeef/plugins/musical-spectrum.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ stdenv.mkDerivation {
runHook postInstall
'';

meta = with lib; {
meta = {
description = "Musical spectrum plugin for the DeaDBeeF music player";
homepage = "https://github.com/cboxdoerfer/ddb_musical_spectrum";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ddelabru ];
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.ddelabru ];
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/deadbeef/plugins/playlist-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ stdenv.mkDerivation {
"gtk3"
];

meta = with lib; {
meta = {
description = "Removes duplicate and vanished files from the current playlist";
homepage = "https://github.com/kpcee/deadbeef-playlist-manager";
license = licenses.gpl2Plus;
maintainers = [ maintainers.cmm ];
platforms = platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.cmm ];
platforms = lib.platforms.linux;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/deadbeef/plugins/statusnotifier.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

meta = with lib; {
meta = {
description = "DeaDBeeF StatusNotifier Plugin";
homepage = "https://github.com/vovochka404/deadbeef-statusnotifier-plugin";
license = licenses.gpl3Plus;
maintainers = [ maintainers.kurnevsky ];
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.kurnevsky ];
platforms = lib.platforms.linux;
};
}
6 changes: 3 additions & 3 deletions pkgs/applications/audio/espeak/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ stdenv.mkDerivation rec {
makeFlags="PREFIX=$out DATADIR=$out/share/espeak-data"
'';

meta = with lib; {
meta = {
description = "Compact open source software speech synthesizer";
mainProgram = "espeak";
homepage = "https://espeak.sourceforge.net/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
};
}
6 changes: 3 additions & 3 deletions pkgs/applications/audio/espeak/edit.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ stdenv.mkDerivation rec {
cp src/espeakedit "$out/bin"
'';

meta = with lib; {
meta = {
description = "Phoneme editor for espeak";
mainProgram = "espeakedit";
homepage = "https://espeak.sourceforge.net/";
license = licenses.gpl3Plus;
platforms = platforms.linux;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/freqtweak/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ stdenv.mkDerivation {

enableParallelBuilding = true;

meta = with lib; {
meta = {
homepage = "http://essej.net/freqtweak/";
description = "Realtime audio frequency spectral manipulation";
maintainers = [ maintainers.magnetophon ];
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
mainProgram = "freqtweak";
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/guitarix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ stdenv.mkDerivation (finalAttrs: {

env.NIX_CFLAGS_COMPILE = toString [ "-fpermissive" ];

meta = with lib; {
meta = {
description = "Virtual guitar amplifier for Linux running with JACK";
mainProgram = "guitarix";
longDescription = ''
Expand All @@ -132,10 +132,10 @@ stdenv.mkDerivation (finalAttrs: {
crazy sounds never heard before.
'';
homepage = "https://github.com/brummer10/guitarix";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
lord-valen
];
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
})
8 changes: 4 additions & 4 deletions pkgs/applications/audio/ladspa-plugins/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ stdenv.mkDerivation rec {
cp ${automake}/share/automake-*/mkinstalldirs .
'';

meta = with lib; {
meta = {
homepage = "http://plugin.org.uk/";
description = "LADSPA format audio plugins";
license = licenses.gpl2Only;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.magnetophon ];
platforms = lib.platforms.unix;
};
}
Loading
Loading