summary refs log tree commit diff
path: root/pkgs/development/libraries/pcre/default.nix
blob: 5b98a264e3ca2ff8fc26f67de74ec1e66282d3bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{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";
  };
  inherit stdenv;
}