nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 20.03 22 lines 543 B view raw
1{ stdenv, fetchFromGitHub, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "tinyxml-2"; 5 version = "6.0.0"; 6 7 src = fetchFromGitHub { 8 repo = "tinyxml2"; 9 owner = "leethomason"; 10 rev = version; 11 sha256 = "031fmhpah449h3rkyamzzdpzccrrfrvjb4qn6vx2vjm47jwc54qv"; 12 }; 13 14 nativeBuildInputs = [ cmake ]; 15 16 meta = { 17 description = "A simple, small, efficient, C++ XML parser"; 18 homepage = http://www.grinninglizard.com/tinyxml2/index.html; 19 platforms = stdenv.lib.platforms.unix; 20 license = stdenv.lib.licenses.zlib; 21 }; 22}