nixpkgs/pkgs/development/libraries/opencollada/default.nix

28 lines
693 B
Nix
Raw Normal View History

2014-12-23 17:16:47 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, libxml2, pcre }:
2017-09-16 20:40:02 +01:00
stdenv.mkDerivation rec {
name = "opencollada-${version}";
2014-12-23 17:16:47 +00:00
2017-09-16 20:40:02 +01:00
version = "1.6.59";
2014-12-23 17:16:47 +00:00
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "OpenCOLLADA";
2017-09-16 20:40:02 +01:00
rev = "v${version}";
sha256 = "0gpjvzcfyilb96x5ywajxgkw42ipwp4my36z9cq686bd9vpp3q0g";
2014-12-23 17:16:47 +00:00
};
buildInputs = [ cmake pkgconfig ];
propagatedBuildInputs = [ libxml2 pcre ];
enableParallelBuilding = true;
meta = {
description = "A library for handling the COLLADA file format";
homepage = https://github.com/KhronosGroup/OpenCOLLADA/;
maintainers = [ stdenv.lib.maintainers.eelco ];
platforms = stdenv.lib.platforms.linux;
};
}