e42507d182
gazillion different servers. Resurrected some 25 missing files. svn path=/nixpkgs/trunk/; revision=2237
12 lines
316 B
Nix
12 lines
316 B
Nix
{stdenv, fetchurl, pkgconfig, xproto, libX11}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libXpm-3.5.1";
|
|
src = fetchurl {
|
|
url = http://catamaran.labs.cs.uu.nl/dist/tarballs/libXpm-3.5.1.tar.bz2;
|
|
md5 = "733e20a60c3343531b50bcc48348fd3e";
|
|
};
|
|
buildInputs = [pkgconfig];
|
|
propagatedBuildInputs = [xproto libX11];
|
|
}
|