nixpkgs/pkgs/development/libraries/libtxc_dxtn/default.nix

23 lines
620 B
Nix
Raw Normal View History

{ stdenv, fetchurl, autoreconfHook, libGLU_combined }:
let version = "1.0.1"; in
stdenv.mkDerivation rec {
name = "libtxc_dxtn-${version}";
src = fetchurl {
url = "https://people.freedesktop.org/~cbrill/libtxc_dxtn/${name}.tar.bz2";
sha256 = "0q5fjaknl7s0z206dd8nzk9bdh8g4p23bz7784zrllnarl90saa5";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libGLU_combined ];
2018-10-11 13:27:14 +01:00
meta = with stdenv.lib; {
homepage = http://dri.freedesktop.org/wiki/S3TC;
repositories.git = git://people.freedesktop.org/~mareko/libtxc_dxtn;
2018-10-11 13:27:14 +01:00
license = licenses.mit;
platforms = platforms.unix;
};
}