lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 23 lines 599 B view raw
1{ stdenv, fetchFromGitHub, unzip, cmake, boost, zlib }: 2 3stdenv.mkDerivation rec { 4 name = "assimp-${version}"; 5 version = "3.3.1"; 6 7 src = fetchFromGitHub{ 8 owner = "assimp"; 9 repo = "assimp"; 10 rev = "v${version}"; 11 sha256 = "13y44fymj13h6alig0nqab91j2qch0yh9gq8yql2zz744ch2s5vc"; 12 }; 13 14 buildInputs = [ cmake boost zlib ]; 15 16 meta = with stdenv.lib; { 17 description = "A library to import various 3D model formats"; 18 homepage = http://assimp.sourceforge.net/; 19 license = licenses.bsd3; 20 maintainers = with maintainers; [ ehmry ]; 21 platforms = platforms.linux; 22 }; 23}