Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 487 B view raw
1{ stdenv, fetchurl, unzip }: 2 3stdenv.mkDerivation rec { 4 name = "lib3ds-1.3.0"; 5 6 src = fetchurl { 7 url = "http://lib3ds.googlecode.com/files/${name}.zip"; 8 sha256 = "1qr9arfdkjf7q11xhvxwzmhxqz3nhcjkyb8zzfjpz9jm54q0rc7m"; 9 }; 10 11 buildInputs = [ unzip ]; 12 13 meta = { 14 description = "Library for managing 3D-Studio Release 3 and 4 \".3DS\" files"; 15 homepage = http://lib3ds.sourceforge.net/; 16 license = "LGPL"; 17 platforms = stdenv.lib.platforms.unix; 18 }; 19} 20