at 18.03-beta 20 lines 466 B view raw
1{ stdenv, fetchurl }: 2 3let 4 name = "log4cplus-1.2.0"; 5in 6stdenv.mkDerivation { 7 inherit name; 8 9 src = fetchurl { 10 url = "mirror://sourceforge/log4cplus/${name}.tar.bz2"; 11 sha256 = "1fb3g9l12sps3mv4xjiql2kcvj439mww3skz735y7113cnlcf338"; 12 }; 13 14 meta = { 15 homepage = http://log4cplus.sourceforge.net/; 16 description = "A port the log4j library from Java to C++"; 17 license = stdenv.lib.licenses.asl20; 18 platforms = stdenv.lib.platforms.unix; 19 }; 20}