summary refs log tree commit diff
path: root/pkgs/development/libraries/lib3ds/default.nix
blob: 6e926dfb421c6b5e1da13cdbecf024f760a9bd20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl, unzip }:

stdenv.mkDerivation rec {
  name = "lib3ds-1.3.0";

  src = fetchurl {
    url = "http://lib3ds.googlecode.com/files/${name}.zip";
    sha256 = "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m";
  };

  nativeBuildInputs = [ unzip ];

  meta = {
    description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files";
    homepage = "http://lib3ds.sourceforge.net/";
    license = "LGPL";
    platforms = lib.platforms.unix;
  };
}