Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

cppunit: 1.14.0

+6 -5
+6 -5
pkgs/development/libraries/cppunit/default.nix
··· 1 1 {stdenv, fetchurl}: 2 2 3 - stdenv.mkDerivation { 4 - name = "cppunit-1.13.2"; 3 + stdenv.mkDerivation rec { 4 + name = "cppunit-${version}"; 5 + version = "1.14.0"; 5 6 6 7 src = fetchurl { 7 - url = http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz; 8 - sha256 = "17s2kzmkw3kfjhpp72rfppyd7syr7bdq5s69syj2nvrlwd3d4irz"; 8 + url = "http://dev-www.libreoffice.org/src/${name}.tar.gz"; 9 + sha256 = "1027cyfx5gsjkdkaf6c2wnjh68882grw8n672018cj3vs9lrhmix"; 9 10 }; 10 11 11 12 meta = { 12 - homepage = https://sourceforge.net/apps/mediawiki/cppunit/; 13 + homepage = https://freedesktop.org/wiki/Software/cppunit/; 13 14 description = "C++ unit testing framework"; 14 15 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 15 16 };