Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9dbda3eddf0b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 39d343929d0c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 3, 2019

  1. Copy the full SHA
    ae61071 View commit details

Commits on Sep 4, 2019

  1. Merge pull request #68002 from marsam/update-supercollider

    supercollider: 3.10.2 -> 3.10.3
    marsam authored Sep 4, 2019
    Copy the full SHA
    39d3439 View commit details
Showing with 6 additions and 4 deletions.
  1. +6 −4 pkgs/development/interpreters/supercollider/default.nix
10 changes: 6 additions & 4 deletions pkgs/development/interpreters/supercollider/default.nix
Original file line number Diff line number Diff line change
@@ -9,12 +9,12 @@ in

mkDerivation rec {
pname = "supercollider";
version = "3.10.2";
version = "3.10.3";


src = fetchurl {
url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source-linux.tar.bz2";
sha256 = "0ynz1ydcpsd5h57h1n4a7avm6p1cif5a8rkmz4qpr46pr8z9p6iq";
url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source.tar.bz2";
sha256 = "1wvsrr4qcqmpxpn57wwrnwbnf3pflr3n4wkj9j6b9cdisp34kv5d";
};

hardeningDisable = [ "stackprotector" ];
@@ -26,14 +26,16 @@ mkDerivation rec {

nativeBuildInputs = [ cmake pkgconfig qttools ];

enableParallelBuilding = true;

buildInputs = [
gcc libjack2 libsndfile fftw curl libXt qtbase qtwebengine qtwebsockets readline ]
++ optional (!stdenv.isDarwin) alsaLib
++ optional useSCEL emacs;

meta = with stdenv.lib; {
description = "Programming language for real time audio synthesis";
homepage = http://supercollider.sourceforge.net/;
homepage = "https://supercollider.github.io";
maintainers = with maintainers; [ mrmebelman ];
license = licenses.gpl3;
platforms = [ "x686-linux" "x86_64-linux" ];