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