2005-09-11 15:38:59 +00:00
|
|
|
{stdenv, fetchurl} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "mockobjects-0.09";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2007-08-27 13:01:33 +00:00
|
|
|
url = mirror://sourceforge/mockobjects/mockobjects-bin-0.09.tar;
|
2017-01-24 16:28:20 +00:00
|
|
|
sha256 = "18rnyqfcyh0s3dwkkaszdd50ssyjx5fa1y3ii309ldqg693lfgnz";
|
2005-09-11 15:38:59 +00:00
|
|
|
};
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2018-11-01 20:34:18 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Generic unit testing framework and methodology for testing any kind of code";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.asl20;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2005-09-11 15:38:59 +00:00
|
|
|
}
|