Files
nixpkgs/pkgs/development/libraries/cppunit/default.nix
T

18 lines
462 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
2007-10-01 15:09:29 +00:00
2017-09-16 20:35:02 +02:00
stdenv.mkDerivation rec {
name = "cppunit-${version}";
version = "1.14.0";
2011-10-06 10:23:27 +00:00
src = fetchurl {
2017-09-16 20:35:02 +02:00
url = "http://dev-www.libreoffice.org/src/${name}.tar.gz";
sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix";
};
2011-10-06 10:23:27 +00:00
meta = {
2017-09-16 20:35:02 +02:00
homepage = https://freedesktop.org/wiki/Software/cppunit/;
2011-10-06 10:23:27 +00:00
description = "C++ unit testing framework";
2014-01-13 15:54:57 +01:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
2011-10-06 10:23:27 +00:00
};
2007-10-01 15:09:29 +00:00
}