nixpkgs/pkgs/development/libraries/freedesktop/libSM/default.nix
Eelco Dolstra bd56b7d65c * Started moving from XFree86 to the freedesktop.org Xlibs libraries.
svn path=/nixpkgs/trunk/; revision=860
2004-03-27 21:59:31 +00:00

15 lines
386 B
Nix

{stdenv, fetchurl, pkgconfig, libX11, libICE}:
derivation {
name = "libSM-6.0.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://freedesktop.org/~xlibs/release/xlibs-1.0/libSM-6.0.2.tar.bz2;
md5 = "0ecc3ec75391d9158f25a94a652bd387";
};
buildInputs = [pkgconfig libX11 libICE];
_propagatedBuildInputs = [libICE];
inherit stdenv;
}