at v206 492 B view raw
1{stdenv, fetchurl}: 2 3stdenv.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 = "http://sourceforge.net/apps/mediawiki/cppunit/"; 13 description = "C++ unit testing framework"; 14 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 15 maintainers = [ stdenv.lib.maintainers.simons ]; 16 }; 17}