Skip to content
Closed
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.
8 changes: 4 additions & 4 deletions pkgs/applications/audio/ardour/7.nix
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ stdenv.mkDerivation rec {

LINKFLAGS = "-lpthread";

meta = with lib; {
meta = {
description = "Multi-track hard disk recording software";
longDescription = ''
Ardour is a digital audio workstation (DAW), You can use it to
Expand All @@ -226,10 +226,10 @@ stdenv.mkDerivation rec {
https://community.ardour.org/donate
'';
homepage = "https://ardour.org/";
license = licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
mainProgram = "ardour7";
platforms = platforms.linux;
maintainers = with maintainers; [
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
magnetophon
mitchmindtree
];
Expand Down
6 changes: 3 additions & 3 deletions pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,17 +92,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
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/bucklespring/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
runHook postInstall
'';

meta = with lib; {
meta = {
description = "Nostalgia bucklespring keyboard sound";
mainProgram = "buckle";
longDescription = ''
Expand All @@ -67,8 +67,8 @@ stdenv.mkDerivation rec {
<code>users.users.alice.extraGroups = [ "input" ];</code>
'';
homepage = "https://github.com/zevv/bucklespring";
license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = [ maintainers.evils ];
license = lib.licenses.gpl2Only;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.evils ];
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/carla/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ stdenv.mkDerivation (finalAttrs: {
done
'';

meta = with lib; {
meta = {
homepage = "https://kx.studio/Applications:Carla";
description = "Audio plugin host";
longDescription = ''
Expand All @@ -117,8 +117,8 @@ stdenv.mkDerivation (finalAttrs: {
It uses JACK as the default and preferred audio driver but also
supports native drivers like ALSA, DirectSound or CoreAudio.
'';
license = licenses.gpl2Plus;
maintainers = [ maintainers.minijackson ];
platforms = platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = [ lib.maintainers.minijackson ];
platforms = lib.platforms.linux;
};
})
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;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/codecserver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ stdenv.mkDerivation rec {
--replace '=''${exec_prefix}//' '=/'
'';

meta = with lib; {
meta = {
homepage = "https://github.com/jketterl/codecserver";
description = "Modular audio codec server";
license = licenses.gpl3Only;
platforms = platforms.unix;
teams = [ teams.c3d2 ];
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
teams = [ lib.teams.c3d2 ];
mainProgram = "codecserver";
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/csound/csound-qt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ stdenv.mkDerivation rec {
"PYTHON_VERSION=3.${python3.sourceVersion.minor}"
];

meta = with lib; {
meta = {
description = "CsoundQt is a frontend for Csound with editor, integrated help, widgets and other features";
homepage = "https://csoundqt.github.io/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ hlolli ];
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ hlolli ];
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/csound/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ stdenv.mkDerivation {
ln -s $out/lib/CsoundLib64.framework $out/Library/Frameworks
'';

meta = with lib; {
meta = {
description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
homepage = "https://csound.com/";
license = licenses.lgpl21Plus;
maintainers = [ maintainers.marcweber ];
platforms = platforms.unix;
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.marcweber ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/audio/deadbeef/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,12 @@ clangStdenv.mkDerivation {
substituteInPlace plugins/adplug/Makefile.am --replace 'adplug_la_CXXFLAGS = ' 'adplug_la_CXXFLAGS = -std=c++11 '
'';

meta = with lib; {
meta = {
description = "Ultimate Music Player for GNU/Linux";
mainProgram = "deadbeef";
homepage = "http://deadbeef.sourceforge.net/";
downloadPage = "https://github.com/DeaDBeeF-Player/deadbeef";
license = licenses.gpl2;
license = lib.licenses.gpl2;
platforms = [
"x86_64-linux"
"i686-linux"
Expand Down
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 @@ -32,11 +32,11 @@ stdenv.mkDerivation {
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;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/drumkv1/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ stdenv.mkDerivation rec {
"-DCMAKE_INSTALL_LIBDIR=lib"
];

meta = with lib; {
meta = {
description = "Old-school drum-kit sampler synthesizer with stereo fx";
mainProgram = "drumkv1_jack";
homepage = "http://drumkv1.sourceforge.net/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ maintainers.theredstonedev ];
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.theredstonedev ];
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/easyaudiosync/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ stdenv.mkDerivation rec {
})
];

meta = with lib; {
meta = {
description = "Audio library syncing and conversion utility";
longDescription = ''
Easy Audio Sync is an audio library syncing and conversion utility.
Expand All @@ -94,8 +94,8 @@ stdenv.mkDerivation rec {
GUI-based instead of CLI-based.
'';
homepage = "https://github.com/complexlogic/EasyAudioSync";
license = licenses.unlicense;
maintainers = with maintainers; [ matteopacini ];
platforms = platforms.linux ++ platforms.darwin;
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ matteopacini ];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
}
8 changes: 4 additions & 4 deletions pkgs/applications/audio/espeak-ng/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ stdenv.mkDerivation rec {
inherit mbrolaSupport;
};

meta = with lib; {
meta = {
description = "Open source speech synthesizer that supports over 70 languages, based on eSpeak";
homepage = "https://github.com/espeak-ng/espeak-ng";
changelog = "https://github.com/espeak-ng/espeak-ng/blob/${version}/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aske ];
platforms = platforms.all;
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ aske ];
platforms = lib.platforms.all;
mainProgram = "espeak-ng";
};
}
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;
};
}
Loading
Loading