20 lines
493 B
Nix
20 lines
493 B
Nix
{ stdenv, fetchurl, autoreconfHook, mesa }:
|
|
|
|
let version = "1.0.1"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libtxc_dxtn-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://people.freedesktop.org/~cbrill/libtxc_dxtn/${name}.tar.bz2";
|
|
sha256 = "0q5fjaknl7s0z206dd8nzk9bdh8g4p23bz7784zrllnarl90saa5";
|
|
};
|
|
|
|
buildInputs = [ autoreconfHook mesa ];
|
|
|
|
meta = {
|
|
homepage = http://dri.freedesktop.org/wiki/S3TC;
|
|
repositories.git = git://people.freedesktop.org/~mareko/libtxc_dxtn;
|
|
};
|
|
}
|