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: 7a9967583ccd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8630f58a12bc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 31, 2018

  1. supercollider: build with alsa (midi) support on non-darwin

    Midi functionality is kind of core to an environment like SuperCollider.
    yurkobb committed Oct 31, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    22b7afe View commit details

Commits on Nov 14, 2018

  1. Merge pull request #49556 from yurkobb/supercollider-alsa-linux

    supercollider: build with alsa (midi) support on non-darwin
    srhb authored Nov 14, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    lsix lsix
    Copy the full SHA
    8630f58 View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 pkgs/development/interpreters/supercollider/default.nix
3 changes: 2 additions & 1 deletion pkgs/development/interpreters/supercollider/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, pkgconfig
{ stdenv, fetchurl, cmake, pkgconfig, alsaLib
, libjack2, libsndfile, fftw, curl, gcc
, libXt, qtbase, qttools, qtwebkit, readline
, useSCEL ? false, emacs
@@ -28,6 +28,7 @@ stdenv.mkDerivation rec {

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

meta = {