mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
xterm: using versioned tarball, upgrade go 231
svn path=/nixpkgs/trunk/; revision=10333
This commit is contained in:
parent
8779bd4232
commit
6f8379d175
1 changed files with 3 additions and 3 deletions
|
@ -1,10 +1,10 @@
|
||||||
{stdenv, fetchurl, libXaw, xproto, libXt, libX11, libSM, libICE, ncurses}:
|
{stdenv, fetchurl, libXaw, xproto, libXt, libX11, libSM, libICE, ncurses}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "xterm-231";
|
name = "xterm-231";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://invisible-island.net/xterm/xterm-231.tgz;
|
url = "ftp://invisible-island.net/xterm/${name}.tgz";
|
||||||
md5 = "b767d702e1464e16802b90c2187252c6"; /* was f7b04a66dc401dc22f5ddb7f345be229 */ /* was a062d0b398918015d07c31ecdcc5111a */
|
sha256 = "0qlz5nkdqkahdg9kbd1ni96n69srj1pd9yggwrw3z0kghaajb2sr";
|
||||||
};
|
};
|
||||||
buildInputs = [libXaw xproto libXt libX11 libSM libICE ncurses];
|
buildInputs = [libXaw xproto libXt libX11 libSM libICE ncurses];
|
||||||
configureFlags = ["--enable-wide-chars"];
|
configureFlags = ["--enable-wide-chars"];
|
||||||
|
|
Loading…
Reference in a new issue