nixpkgs/pkgs/development/libraries/assimp/default.nix
2016-08-06 17:06:45 +03:00

26 lines
606 B
Nix

{ stdenv, fetchFromGitHub, unzip, cmake, boost, zlib }:
let
version = "3.2";
in
stdenv.mkDerivation {
name = "assimp-${version}";
src = fetchFromGitHub{
owner = "assimp";
repo = "assimp";
rev = "v${version}";
sha256 = "09fsksbq9a8gykwmw6gaicwh2ladrln1jc1xc5yk7w6x180cbb1x";
};
buildInputs = [ unzip cmake boost zlib ];
meta = with stdenv.lib; {
description = "A library to import various 3D model formats";
homepage = http://assimp.sourceforge.net/;
license = licenses.bsd3;
maintainers = with maintainers; [ ehmry ];
platforms = platforms.linux;
};
}