summary refs log tree commit diff
path: root/pkgs/development/libraries/xlibs/libXi/default.nix
blob: 8171b5d8e8f024e3a9425fef0f4af0a466d6617a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, pkgconfig, libX11}:

stdenv.mkDerivation {
  name = "libXi-6.0.1";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/libXi-6.0.1.tar.bz2;
    md5 = "7e935a42428d63a387b3c048be0f2756";
  };
  buildInputs = [pkgconfig];
  propagatedBuildInputs = [libX11];
}