summary refs log tree commit diff
path: root/pkgs/development/libraries/lib3ds
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-06-08 03:56:32 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-06-08 03:56:32 +0000
commit60a651413aa5f0ac741e71afffd94edb8916c67a (patch)
treea088e9a7261364aacfaec4a95ec4a0b59943faa7 /pkgs/development/libraries/lib3ds
parentff704a010208b6f0c2282ba7f5885a7c5cd2aca3 (diff)
downloadnixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar.gz
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar.bz2
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar.lz
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar.xz
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.tar.zst
nixpkgs-60a651413aa5f0ac741e71afffd94edb8916c67a.zip
added freestyle (non photorealistic renderer) and dependencies libQGLViewer, lib3ds
svn path=/nixpkgs/trunk/; revision=12009
Diffstat (limited to 'pkgs/development/libraries/lib3ds')
-rw-r--r--pkgs/development/libraries/lib3ds/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/lib3ds/default.nix b/pkgs/development/libraries/lib3ds/default.nix
new file mode 100644
index 00000000000..ec7f4adf031
--- /dev/null
+++ b/pkgs/development/libraries/lib3ds/default.nix
@@ -0,0 +1,18 @@
+args:
+args.stdenv.mkDerivation {
+  name = "lib3ds";
+
+  src = args.fetchurl {
+    url = mirror://sourceforge/lib3ds/lib3ds-1.3.0.zip;
+    sha256 = "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m";
+  };
+
+  buildInputs =(with args; [unzip]);
+
+  meta = { 
+      description = "library for managing 3D-Studio Release 3 and 4 \".3DS\" files";
+      homepage = http://lib3ds.sourceforge.net/;
+      license = "LGPL";
+    };
+}
+