summary refs log blame commit diff
path: root/pkgs/development/libraries/cppunit/default.nix
blob: 76fd6db18b05a557b16ab4470f1a3971228b98af (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
 
                         
                    
                     
 
                  
                                                                           
                                                                    
    
 
                           
                                                              
                                               

                                                    
    
 
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  pname = "cppunit";
  version = "1.14.0";

  src = fetchurl {
    url = "https://dev-www.libreoffice.org/src/${pname}-${version}.tar.gz";
    sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
  };

  meta = with stdenv.lib; {
    homepage = https://freedesktop.org/wiki/Software/cppunit/;
    description = "C++ unit testing framework";
    license = licenses.lgpl21;
    platforms = platforms.linux ++ platforms.darwin;
  };
}