2021-01-22 00:00:13 +07:00
|
|
|
{lib, stdenv, fetchurl} :
|
2005-09-11 15:38:59 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "mockobjects-0.09";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-03-31 21:11:51 -04: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 19:06:29 +03:00
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2018-11-01 21:34:18 +01:00
|
|
|
description = "Generic unit testing framework and methodology for testing any kind of code";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.asl20;
|
2016-08-02 19:06:29 +03:00
|
|
|
};
|
2005-09-11 15:38:59 +00:00
|
|
|
}
|