lol
fork

Configure Feed

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

at release-16.03-start 27 lines 719 B view raw
1{ stdenv, fetchurl, unzip, cmake, boost }: 2 3let 4 major = "3"; 5 minor = "1"; 6 revision = "1"; 7 version = "${major}.${minor}.${revision}"; 8in 9stdenv.mkDerivation { 10 name = "assimp-${version}"; 11 12 src = fetchurl { 13 url = "mirror://sourceforge/project/assimp/assimp-${major}.${minor}/assimp-${version}_no_test_models.zip"; 14 sha256 = "17nyzsqzqpafamhi779f1bkh5mfgj8rpas034x3v9a0hdy3jg66s"; 15 }; 16 17 buildInputs = [ unzip cmake boost ]; 18 19 meta = with stdenv.lib; { 20 description = "A library to import various 3D model formats"; 21 homepage = http://assimp.sourceforge.net/; 22 license = licenses.bsd3; 23 maintainers = with maintainers; [ ehmry ]; 24 platfroms = platforms.linux; 25 inherit version; 26 }; 27}