2015-09-15 09:26:18 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, glib, xorg, mesa}:
|
2007-02-28 17:52:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "libcm-0.1.1";
|
|
|
|
src = fetchurl {
|
2013-07-14 02:23:06 +00:00
|
|
|
url = mirror://gnome/sources/libcm/0.1/libcm-0.1.1.tar.bz2;
|
2007-02-28 17:52:41 +00:00
|
|
|
sha256 = "11i5z8l5v5ffihif35k5j8igj0rahsk4jdmsj24xhdw2s0zx53kn";
|
|
|
|
};
|
|
|
|
buildInputs = [
|
2015-09-15 09:26:18 +00:00
|
|
|
pkgconfig glib xorg.xlibsWrapper xorg.libXdamage xorg.libXcomposite
|
|
|
|
xorg.libXtst xorg.inputproto
|
2007-02-28 17:52:41 +00:00
|
|
|
# !!! inputproto should really be propagated by libXtst
|
|
|
|
];
|
|
|
|
propagatedBuildInputs = [mesa];
|
|
|
|
}
|