a3e4c7640f
Their build system has changed, and the source tree they distribute too, so the dependencies changed a bit. To get meshlab working, I update lib3ds and add levmar. svn path=/nixpkgs/trunk/; revision=19595
20 lines
444 B
Nix
20 lines
444 B
Nix
{ stdenv, fetchurl, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lib3ds-1.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://lib3ds.googlecode.com/files/${name}.zip";
|
|
sha256 = "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m";
|
|
};
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
meta = {
|
|
description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files";
|
|
homepage = http://lib3ds.sourceforge.net/;
|
|
license = "LGPL";
|
|
};
|
|
}
|
|
|