about summary refs log tree commit diff
path: root/pkgs/development/interpreters/perl/default.fix
blob: 8d9fa7f610d3f05c7136b675d3b63482f138894e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{stdenv, fetchurl}: derivation {
  name = "perl-5.8.0";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
      url = ftp://ftp.cs.uu.nl/mirror/CPAN/src/5.0/perl-5.8.1.tar.gz;
      md5 = "87cf132f1fbf23e780f0b218046438a6";
    };
  stdenv = stdenv;
}