summary refs log tree commit diff
path: root/pkgs/development/libraries/tinyxml-2/default.nix
blob: 29fa2739f24d11279a165f589b55d313d0b6a032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ stdenv, fetchurl, cmake }:
let version = "3.0.0";
in stdenv.mkDerivation rec {
  name = "tinyxml-2-${version}";
  src = fetchurl {
    url = "https://github.com/leethomason/tinyxml2/archive/${version}.tar.gz";
    sha256 = "0ispg7ngkry8vhzzawbq42y8gkj53xjipkycw0rkhh487ras32hj";
  };

  nativeBuildInputs = [ cmake ];
}