2010-01-20 15:10:26 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-07-05 23:31:23 +02:00
|
|
|
name = "cacert-20120628";
|
2010-01-20 15:10:26 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-28 18:02:18 +02:00
|
|
|
url = "http://nixos.org/tarballs/${name}.pem.bz2";
|
2012-07-05 23:31:23 +02:00
|
|
|
sha256 = "0xg9f1w2pmsv221lgc60c07bs0xf2rr189a2yp2y9an95h3gx7ir";
|
2010-01-20 15:10:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
unpackPhase = "true";
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/etc
|
2010-01-20 15:10:26 +01:00
|
|
|
bunzip2 < $src > $out/etc/ca-bundle.crt
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://curl.haxx.se/docs/caextract.html;
|
|
|
|
description = "A bundle of X.509 certificates of public Certificate Authorities (CA)";
|
|
|
|
};
|
|
|
|
}
|