2725cbef42
I thought this was needed by Steam, but it only applies when not using propietary drivers, and even then it doesn't look like well supported.
21 lines
466 B
Nix
21 lines
466 B
Nix
{ stdenv, fetchurl, autoconf, automake, libtool, mesa }:
|
|
|
|
let version = "1.0.1"; in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libtxc_dxtn-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://cgit.freedesktop.org/~mareko/${name}.tar.gz";
|
|
sha256 = "0g6lymik9cs7nbzigwzaf49fnhhfsvjanhg92wykw7rfq9zvkhvv";
|
|
};
|
|
|
|
buildInputs = [ autoconf automake libtool mesa ];
|
|
|
|
preConfigure = "autoreconf -vfi";
|
|
|
|
meta = {
|
|
homepage = http://dri.freedesktop.org/wiki/S3TC;
|
|
};
|
|
}
|