summary refs log blame commit diff
path: root/pkgs/development/libraries/lib3ds/default.nix
blob: ec7f4adf0316158745af7e7d6081be07d5f02c21 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
    };
}