Skip to content

Commit

Permalink
cppunit: 1.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
7c6f434c committed Sep 17, 2017
1 parent 44db65d commit 02f439d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/development/libraries/cppunit/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{stdenv, fetchurl}:

stdenv.mkDerivation {
name = "cppunit-1.13.2";
stdenv.mkDerivation rec {
name = "cppunit-${version}";
version = "1.14.0";

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

meta = {
homepage = https://sourceforge.net/apps/mediawiki/cppunit/;
homepage = https://freedesktop.org/wiki/Software/cppunit/;
description = "C++ unit testing framework";
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
Expand Down

0 comments on commit 02f439d

Please sign in to comment.