nixpkgs/pkgs/development/libraries/libtxc_dxtn/default.nix
Carles Pagès 2725cbef42 Add libtxc_dxtn-1.0.1.
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.
2013-08-10 06:08:17 +03:00

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;
};
}