depot/third_party/nixpkgs/pkgs/development/libraries/cutee/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
638 B
Nix

{ 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";
homepage = "http://www.codesink.org/cutee_unit_testing.html";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ leenaars];
platforms = platforms.linux;
};
}