nixpkgs/pkgs/development/libraries/xlibs/libXp/default.nix
Eelco Dolstra a7f41fb270 * Added libXp. (Unfortunately there's not releases libXp in the xlibs
project yet, so I built one from CVS.)

svn path=/nixpkgs/trunk/; revision=1506
2004-09-25 20:22:09 +00:00

12 lines
334 B
Nix

{stdenv, fetchurl, pkgconfig, libX11, libXext, libXt}:
stdenv.mkDerivation {
name = "libXp-6.2.0-cvs";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/libXp-6.2.0-cvs.tar.bz2;
md5 = "e9e69235e00fb80c3b399507f2699b1e";
};
buildInputs = [pkgconfig libXt];
propagatedBuildInputs = [libX11 libXext];
}