Merge pull request #108287 from jpotier/fix-vcv-rack-bitbucket

Fetch pffft from upstream project website instead of bitbucket
This commit is contained in:
Pavol Rusnak 2021-01-03 15:22:17 +01:00 committed by GitHub
commit b33fd9a5ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ stdenv, makeWrapper, fetchFromBitbucket, fetchFromGitHub, pkgconfig { stdenv, makeWrapper, fetchzip, fetchFromGitHub, pkgconfig
, alsaLib, curl, glew, glfw, gtk2-x11, jansson, libjack2, libXext, libXi , alsaLib, curl, glew, glfw, gtk2-x11, jansson, libjack2, libXext, libXi
, libzip, rtaudio, rtmidi, speex, libsamplerate }: , libzip, rtaudio, rtmidi, speex, libsamplerate }:
@ -7,10 +7,8 @@ let
# Others are downloaded with `make deps`. Due to previous issues with the # Others are downloaded with `make deps`. Due to previous issues with the
# `glfw` submodule (see above) and because we can not access the network when # `glfw` submodule (see above) and because we can not access the network when
# building in a sandbox, we fetch the dependency source manually. # building in a sandbox, we fetch the dependency source manually.
pfft-source = fetchFromBitbucket { pfft-source = fetchzip {
owner = "jpommier"; url = "https://vcvrack.com/downloads/dep/pffft.zip";
repo = "pffft";
rev = "74d7261be17cf659d5930d4830609406bd7553e3";
sha256 = "084csgqa6f1a270bhybjayrh3mpyi2jimc87qkdgsqcp8ycsx1l1"; sha256 = "084csgqa6f1a270bhybjayrh3mpyi2jimc87qkdgsqcp8ycsx1l1";
}; };
nanovg-source = fetchFromGitHub { nanovg-source = fetchFromGitHub {