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

18 lines
462 B
Nix
Raw Normal View History

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