ffdfd50fec
Semi-automatic update. These checks were performed: - built on NixOS - found 1.6.62 with grep in /nix/store/4ss521i0480p31fgmlqkv4rcrrfv8zw2-opencollada-1.6.62 - found 1.6.62 in filename of file in /nix/store/4ss521i0480p31fgmlqkv4rcrrfv8zw2-opencollada-1.6.62 cc "@eelco"
29 lines
720 B
Nix
29 lines
720 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, libxml2, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "opencollada-${version}";
|
|
|
|
version = "1.6.62";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "OpenCOLLADA";
|
|
rev = "v${version}";
|
|
sha256 = "0bqki6sdvxsp9drzj87ma6n7m98az9pr0vyxhgw8b8b9knk8c48r";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ cmake ];
|
|
|
|
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;
|
|
};
|
|
}
|