2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-06-15 21:42:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "cutee";
|
|
|
|
version = "0.4.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2";
|
|
|
|
};
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
buildFlags = [ "cutee" ];
|
2016-06-15 21:42:01 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp cutee $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-06-15 21:42:01 +01:00
|
|
|
description = "C++ Unit Testing Easy Environment";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "cutee";
|
2023-01-21 21:41:12 +00:00
|
|
|
homepage = "https://www.codesink.org/cutee_unit_testing.html";
|
2016-06-15 21:42:01 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ leenaars];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|