3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
11 lines
317 B
Nix
11 lines
317 B
Nix
{stdenv, fetchurl, libXaw, xproto, libXt, libX11, libSM, libICE, ncurses}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "xterm-208";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/xterm.tar.gz;
|
|
md5 = "a062d0b398918015d07c31ecdcc5111a";
|
|
};
|
|
buildInputs = [libXaw xproto libXt libX11 libSM libICE ncurses];
|
|
}
|