summary refs log blame commit diff
path: root/pkgs/development/libraries/pcre/default.nix
blob: 9e18d88fccf207fced217976a6bed090bae74f97 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









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