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

stdenv.mkDerivation {
  name = "pcre-4.3";
  src = fetchurl {
    url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-4.3.tar.bz2;
    md5 = "7bc7d5b590a41e6f9ede30f272002a02";
  };
}