lol
at 16.09-beta 27 lines 660 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "cutee"; 5 version = "0.4.2"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "http://www.codesink.org/download/${pname}-${version}.tar.gz"; 10 sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2"; 11 }; 12 13 buildFlags = "cutee"; 14 15 installPhase = '' 16 mkdir -p $out/bin 17 cp cutee $out/bin 18 ''; 19 20 meta = with stdenv.lib; { 21 description = "C++ Unit Testing Easy Environment"; 22 homepage = http://codesink.org/cutee_unit_testing.html; 23 license = licenses.gpl2Plus; 24 maintainers = with maintainers; [ leenaars]; 25 platforms = platforms.linux; 26 }; 27}