nixpkgs/pkgs/development/libraries/cutee/default.nix

27 lines
632 B
Nix
Raw Normal View History

2016-06-15 20:42:01 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "cutee";
version = "0.4.2";
src = fetchurl {
url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2";
};
buildFlags = "cutee";
installPhase = ''
mkdir -p $out/bin
cp cutee $out/bin
'';
meta = with stdenv.lib; {
description = "C++ Unit Testing Easy Environment";
2018-02-14 10:55:07 +00:00
homepage = http://www.codesink.org/cutee_unit_testing.html;
2016-06-15 20:42:01 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ leenaars];
platforms = platforms.linux;
};
}