mp3val: Use mirror:// URL in fetchurl.

We have a mirror:// URL for sourceforge stuff so we can still retreive
the source tarball even if downloads.sourceforge.net is down.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2015-10-26 10:01:00 +01:00
parent 58f97cf7a6
commit c870333b0b
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -1,10 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "0.1.8";
name = "mp3val-${version}";
version = "0.1.8";
src = fetchurl {
url = "http://downloads.sourceforge.net/mp3val/${name}-src.tar.gz";
url = "mirror://sourceforge/mp3val/${name}-src.tar.gz";
sha256 = "17y3646ghr38r620vkrxin3dksxqig5yb3nn4cfv6arm7kz6x8cm";
};