treewide: Per RFC45, remove all unquoted URLs

This commit is contained in:
Michael Reilly
2020-04-10 17:54:53 +01:00
committed by Jörg Thalheim
parent bf5eb87033
commit 84cf00f980
9648 changed files with 15370 additions and 15370 deletions
@@ -2,14 +2,14 @@
let
patch = fetchurl {
url = mirror://debian/pool/main/libr/libresample/libresample_0.1.3-3.diff.gz;
url = "mirror://debian/pool/main/libr/libresample/libresample_0.1.3-3.diff.gz";
sha256 = "063w8rqxw87fc89gas47vk0ll7xl8cy7d8g70gm1l62bqkkajklx";
};
in
stdenv.mkDerivation {
name = "libresample-0.1.3";
src = fetchurl {
url = mirror://debian/pool/main/libr/libresample/libresample_0.1.3.orig.tar.gz;
url = "mirror://debian/pool/main/libr/libresample/libresample_0.1.3.orig.tar.gz";
sha256 = "05a8mmh1bw5afqx0kfdqzmph4x2npcs4idx0p0v6q95lwf22l8i0";
};
patches = [ patch ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
meta = {
description = "A real-time library for sampling rate conversion library";
license = stdenv.lib.licenses.lgpl2Plus;
homepage = https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html;
homepage = "https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html";
maintainers = [ stdenv.lib.maintainers.sander ];
platforms = stdenv.lib.platforms.unix;
};