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.
This commit is contained in:
parent
87c5a418ec
commit
2725cbef42
20
pkgs/development/libraries/libtxc_dxtn/default.nix
Normal file
20
pkgs/development/libraries/libtxc_dxtn/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -4846,6 +4846,8 @@ let
|
||||
|
||||
libtunepimp = callPackage ../development/libraries/libtunepimp { };
|
||||
|
||||
libtxc_dxtn = callPackage ../development/libraries/libtxc_dxtn { };
|
||||
|
||||
libgeotiff = callPackage ../development/libraries/libgeotiff { };
|
||||
|
||||
libunistring = callPackage ../development/libraries/libunistring { };
|
||||
|
Loading…
Reference in New Issue
Block a user