summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-03-06 02:34:58 -0800
committerGitHub <noreply@github.com>2022-03-06 11:34:58 +0100
commit047ac8cca2b01ea1030740baab5a6d4bdc46e64b (patch)
treea4a1027f201a7e709245c86fa5c56de9080c9e35 /pkgs/applications/audio
parente50bc4dd24f8bdd9546b9e628e02f68ac09def27 (diff)
downloadnixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar.gz
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar.bz2
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar.lz
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar.xz
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.tar.zst
nixpkgs-047ac8cca2b01ea1030740baab5a6d4bdc46e64b.zip
csound: 6.16.2 -> 6.17.0
* csound: 6.16.2 -> 6.17.0 (#159181)

* csound: update meta attributes
Homepage is https://csound.com/
License is LGPL-2.1-or-later

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/csound/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix
index ab3267eae7f..ebcdb8f4290 100644
--- a/pkgs/applications/audio/csound/default.nix
+++ b/pkgs/applications/audio/csound/default.nix
@@ -14,7 +14,7 @@
 
 stdenv.mkDerivation rec {
   pname = "csound";
-  version = "6.16.2";
+  version = "6.17.0";
 
   hardeningDisable = [ "format" ];
 
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
     owner = "csound";
     repo = "csound";
     rev = version;
-    sha256 = "sha256-1rcS3kOspU9ACx45yB8betph4G0hso1OSJQRiabX6tE=";
+    sha256 = "sha256-O19jm3JxHg4TcQzWQZu1uFjfYN2FR41fCRq5YGnTGD0=";
   };
 
   cmakeFlags = [ "-DBUILD_CSOUND_AC=0" ] # fails to find Score.hpp
@@ -37,8 +37,8 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "Sound design, audio synthesis, and signal processing system, providing facilities for music composition and performance on all major operating systems and platforms";
-    homepage = "http://www.csounds.com/";
-    license = licenses.gpl2;
+    homepage = "https://csound.com/";
+    license = licenses.lgpl21Plus;
     maintainers = [maintainers.marcweber];
     platforms = platforms.linux;
   };