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

24 lines
582 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, boost, zlib }:
2017-03-11 01:51:45 +00:00
stdenv.mkDerivation rec {
pname = "assimp";
version = "5.0.0";
2016-05-12 08:12:43 +01:00
src = fetchFromGitHub{
owner = "assimp";
repo = "assimp";
rev = "v${version}";
sha256 = "17y5q5hbygmb0cgf96gd3v8sal5g69cp8hmh1cs3yz7v00kjysmz";
};
2017-03-11 01:51:45 +00:00
buildInputs = [ 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;
};
}