about summary refs log tree commit diff
path: root/pkgs/development/libraries/cppunit/default.nix
blob: 8d2c4bb7dd38bd3a0127e5ef57f5b64dc54b8337 (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 = https://sourceforge.net/apps/mediawiki/cppunit/;
    description = "C++ unit testing framework";
    platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
  };
}