2005-09-11 08:38:59 -07:00
|
|
|
{stdenv, fetchurl} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "mockobjects-0.09";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 18:11:51 -07:00
|
|
|
url = "mirror://sourceforge/mockobjects/mockobjects-bin-0.09.tar";
|
2017-01-24 08:28:20 -08:00
|
|
|
sha256 = "18rnyqfcyh0s3dwkkaszdd50ssyjx5fa1y3ii309ldqg693lfgnz";
|
2005-09-11 08:38:59 -07:00
|
|
|
};
|
2016-08-02 09:06:29 -07:00
|
|
|
|
2018-11-01 13:34:18 -07: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 09:06:29 -07:00
|
|
|
};
|
2005-09-11 08:38:59 -07:00
|
|
|
}
|