JUnit: fix url

This commit is contained in:
Evgeny Egorochkin 2013-07-18 20:37:32 +03:00
parent d4c52014e6
commit a0c3bc137b

View File

@ -1,12 +1,13 @@
{stdenv, fetchurl, unzip} : {stdenv, fetchgit, unzip} :
stdenv.mkDerivation { stdenv.mkDerivation {
name = "junit-4.8.2"; name = "junit-4.8.2";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchgit {
url = http://github.com/downloads/KentBeck/junit/junit4.8.2.zip; url = https://github.com/junit-team/junit.git;
sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6"; rev = "refs/tags/r4.8.2";
sha256 = "1w73l3x97kg8zmrp44xgvp3gr6sih0crm0dhhky6jiq915ba1dlh";
}; };
inherit unzip; inherit unzip;