mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
10 lines
218 B
Nix
10 lines
218 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "pcre-6.4";
|
|
src = fetchurl {
|
|
url = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-6.4.tar.bz2;
|
|
md5 = "c5c73e8767479e8a7751324b0aa32291";
|
|
};
|
|
}
|