summary refs log tree commit diff
path: root/pkgs/development/interpreters/tcl/default.nix
blob: 6e7d781039542afe829002793664db85f3fb52c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "tcl-8.4.13";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/tcl8.4.13-src.tar.gz;
    md5 = "c6b655ad5db095ee73227113220c0523";
  };
}