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

Commits on Apr 18, 2018

  1. vamp-sdk: 2.5 -> 2.7.1

    magnetophon committed Apr 18, 2018

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    85854ab View commit details

Commits on May 9, 2018

  1. Merge pull request #39105 from magnetophon/vamp-sdk

    vamp-sdk: 2.5 -> 2.7.1
    matthewbauer authored May 9, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f4c5062 View commit details
Showing with 8 additions and 5 deletions.
  1. +8 −5 pkgs/development/libraries/audio/vamp/default.nix
13 changes: 8 additions & 5 deletions pkgs/development/libraries/audio/vamp/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
# set VAMP_PATH ?
# plugins availible on sourceforge and http://www.vamp-plugins.org/download.html (various licenses)

{ stdenv, fetchurl, pkgconfig, libsndfile }:
{ stdenv, fetchFromGitHub, pkgconfig, libsndfile }:

rec {

vampSDK = stdenv.mkDerivation {
name = "vamp-sdk-2.5";
name = "vamp-sdk-2.7.1";
# version = "2.7.1";

src = fetchurl {
url = http://code.soundsoftware.ac.uk/attachments/download/690/vamp-plugin-sdk-2.5.tar.gz;
sha256 = "178kfgq08cmgdzv7g8dwyjp4adwx8q04riimncq4nqkm8ng9ywbv";
src = fetchFromGitHub {
owner = "c4dm";
repo = "vamp-plugin-sdk";
rev = "vamp-plugin-sdk-v2.7.1";
sha256 = "1ifd6l6b89pg83ss4gld5i72fr0cczjnl2by44z5jnndsg3sklw4";
};

nativeBuildInputs = [ pkgconfig ];