blob: 9120886961e8ef10ae5a8f952d0367f77f2c8e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
stdenv,
fetchurl,
unzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "lib3ds";
version = "1.3.0";
src = fetchurl {
url = "http://lib3ds.googlecode.com/files/lib3ds-${finalAttrs.version}.zip";
sha256 = "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m";
};
nativeBuildInputs = [ unzip ];
meta = {
description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files";
homepage = "https://lib3ds.sourceforge.net/";
license = lib.licenses.lgpl2Only;
platforms = lib.platforms.unix;
};
})
|