summary refs log tree commit diff
path: root/pkgs/development/libraries/cppunit/default.nix
blob: 4c64cb715e4e1615eb2921a3961d0bb71417773c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "cppunit-1.13.2";

  src = fetchurl {
    url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz;
    sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz";
  };

  meta = {
    homepage = "http://sourceforge.net/apps/mediawiki/cppunit/";
    description = "C++ unit testing framework";
    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
  };
}