mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
tinyxml-2: init at 3.0.0
This commit is contained in:
parent
4316161495
commit
008bcf51a4
11
pkgs/development/libraries/tinyxml-2/default.nix
Normal file
11
pkgs/development/libraries/tinyxml-2/default.nix
Normal file
@ -0,0 +1,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 ];
|
||||
}
|
@ -8788,6 +8788,8 @@ in
|
||||
|
||||
tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { };
|
||||
|
||||
tinyxml-2 = callPackage ../development/libraries/tinyxml-2 { };
|
||||
|
||||
tk = tk-8_6;
|
||||
|
||||
tk-8_6 = callPackage ../development/libraries/tk/8.6.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user