at 18.03-beta 462 B view raw
1{stdenv, fetchurl}: 2 3stdenv.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 }; 17}