blob: 541264b1606514cce8f851e5005ee1e44a652cb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# This test needs to be run with --extra-deprecated-features url-literals
{stdenv, fetchurl /* pkgconfig, libX11 */ }:
stdenv.mkDerivation {
name = "libXi-6.0.1";
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/libXi-6.0.1.tar.bz2;
md5 = "7e935a42428d63a387b3c048be0f2756";
};
/* buildInputs = [pkgconfig];
propagatedBuildInputs = [libX11]; */
}
|