Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-16.03 11 lines 322 B view raw
1{ stdenv, fetchurl, cmake }: 2let version = "3.0.0"; 3in stdenv.mkDerivation rec { 4 name = "tinyxml-2-${version}"; 5 src = fetchurl { 6 url = "https://github.com/leethomason/tinyxml2/archive/${version}.tar.gz"; 7 sha256 = "0ispg7ngkry8vhzzawbq42y8gkj53xjipkycw0rkhh487ras32hj"; 8 }; 9 10 nativeBuildInputs = [ cmake ]; 11}