summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-05-29 01:48:13 +0200
committerGitHub <noreply@github.com>2021-05-29 01:48:13 +0200
commitdad6bfb33e92ca471937c7f7a81c567fe48528a9 (patch)
tree7ffff6525f29a00e1fb075e4e59542dd08be071f
parentMerge pull request #124517 from mohe2015/update/wordpress-20.09 (diff)
parentvcv-rack: fetch pffft from upstream project website instead of bitbucket (diff)
downloadnixpkgs-dad6bfb33e92ca471937c7f7a81c567fe48528a9.tar.gz
Merge pull request #124809 from Moredread/backport/vcv-rack-pffft-source
[20.09] Backport Fetch pffft from upstream project website instead of bitbucket
-rw-r--r--pkgs/applications/audio/vcv-rack/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/audio/vcv-rack/default.nix b/pkgs/applications/audio/vcv-rack/default.nix
index 2aa09ec0be81..a94cfd3a7cc3 100644
--- a/pkgs/applications/audio/vcv-rack/default.nix
+++ b/pkgs/applications/audio/vcv-rack/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, makeWrapper, fetchFromBitbucket, fetchFromGitHub, pkgconfig
+{ stdenv, makeWrapper, fetchzip, fetchFromGitHub, pkgconfig
, alsaLib, curl, glew, glfw, gtk2-x11, jansson, libjack2, libXext, libXi
, libzip, rtaudio, rtmidi, speex, libsamplerate }:
@@ -7,10 +7,8 @@ let
# 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
# building in a sandbox, we fetch the dependency source manually.
- pfft-source = fetchFromBitbucket {
- owner = "jpommier";
- repo = "pffft";
- rev = "29e4f76ac53bef048938754f32231d7836401f79";
+ pfft-source = fetchzip {
+ url = "https://vcvrack.com/downloads/dep/pffft.zip";
sha256 = "084csgqa6f1a270bhybjayrh3mpyi2jimc87qkdgsqcp8ycsx1l1";
};
nanovg-source = fetchFromGitHub {