lol
at 18.09-beta 18 lines 524 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "xerces-c-${version}"; 5 version = "3.2.1"; 6 7 src = fetchurl { 8 url = "mirror://apache/xerces/c/3/sources/${name}.tar.gz"; 9 sha256 = "18045nyjkr2hygkjc43pi2fmz6qcbn9p00kf42my3aa4i0mn1m3d"; 10 }; 11 12 meta = { 13 homepage = http://xerces.apache.org/xerces-c/; 14 description = "Validating XML parser written in a portable subset of C++"; 15 license = stdenv.lib.licenses.asl20; 16 platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; 17 }; 18}