csound: move to by-name/

This commit is contained in:
pancaek
2025-10-18 04:58:55 -07:00
parent 324523cf9b
commit e782bbc176
2 changed files with 4 additions and 6 deletions
@@ -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 = with lib.maintainers; [ marcweber ];
platforms = lib.platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};
}
-2
View File
@@ -10910,8 +10910,6 @@ with pkgs;
copyq = qt6Packages.callPackage ../applications/misc/copyq { };
csound = callPackage ../applications/audio/csound { };
csound-qt = libsForQt5.callPackage ../applications/audio/csound/csound-qt { };
codeblocksFull = codeblocks.override { contribPlugins = true; };