nixpkgs/pkgs/development/libraries/libcm/default.nix
Vladimír Čunát 88c9f8b574 xlibs: replace occurrences by xorg
This seems to have been confusing people, using both xlibs and xorg, etc.
- Avoided renaming local (and different) xlibs binding in gcc*.
- Fixed cases where both xorg and xlibs were used.
Hopefully everything still works as before.
2015-09-15 12:54:34 +02:00

16 lines
477 B
Nix

{stdenv, fetchurl, pkgconfig, glib, xorg, mesa}:
stdenv.mkDerivation {
name = "libcm-0.1.1";
src = fetchurl {
url = mirror://gnome/sources/libcm/0.1/libcm-0.1.1.tar.bz2;
sha256 = "11i5z8l5v5ffihif35k5j8igj0rahsk4jdmsj24xhdw2s0zx53kn";
};
buildInputs = [
pkgconfig glib xorg.xlibsWrapper xorg.libXdamage xorg.libXcomposite
xorg.libXtst xorg.inputproto
# !!! inputproto should really be propagated by libXtst
];
propagatedBuildInputs = [mesa];
}