lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 21 lines 586 B view raw
1{ stdenv, fetchurl, autoreconfHook, libGLU_combined }: 2 3let version = "1.0.1"; in 4 5stdenv.mkDerivation rec { 6 name = "libtxc_dxtn-${version}"; 7 8 src = fetchurl { 9 url = "https://people.freedesktop.org/~cbrill/libtxc_dxtn/${name}.tar.bz2"; 10 sha256 = "0q5fjaknl7s0z206dd8nzk9bdh8g4p23bz7784zrllnarl90saa5"; 11 }; 12 13 nativeBuildInputs = [ autoreconfHook ]; 14 buildInputs = [ libGLU_combined ]; 15 16 meta = { 17 homepage = http://dri.freedesktop.org/wiki/S3TC; 18 repositories.git = git://people.freedesktop.org/~mareko/libtxc_dxtn; 19 platforms = stdenv.lib.platforms.unix; 20 }; 21}