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 {
name = "junit-4.8.2";
builder = ./builder.sh;
src = fetchurl {
url = http://github.com/downloads/KentBeck/junit/junit4.8.2.zip;
sha256 = "01simvc3pmgp27p7vzavmsx5rphm6hqzwrqfkwllhf3812dcqxy6";
src = fetchgit {
url = https://github.com/junit-team/junit.git;
rev = "refs/tags/r4.8.2";
sha256 = "1w73l3x97kg8zmrp44xgvp3gr6sih0crm0dhhky6jiq915ba1dlh";
};
inherit unzip;