mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
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:
parent
58f97cf7a6
commit
c870333b0b
@ -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";
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user