mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
6784a44296
fixes CVE-2011-4357 cc @grahamc, @fpletz, @domenkozar, @rbvermaa
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, fetchurl, fetchpatch, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "clearsilver-0.10.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.clearsilver.net/downloads/${name}.tar.gz";
|
|
sha256 = "1046m1dpq3nkgxbis2dr2x7hynmy51n64465q78d7pdgvqwa178y";
|
|
};
|
|
|
|
PYTHON_SITE = "$(out)/site-packages";
|
|
|
|
configureFlags = "--with-python=${python}/bin/python --disable-apache --disable-perl --disable-ruby --disable-java --disable-csharp";
|
|
|
|
preInstall = ''
|
|
mkdir -p $out
|
|
mkdir -p $out/site-packages
|
|
'';
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://sources.debian.net/data/main/c/clearsilver/0.10.5-1.6/debian/patches/clang-gcc5.patch";
|
|
sha256 = "0d44v9jx0b6k8nvrhknd958i9rs59kdh73z0lb4f1mzi8if16c38";
|
|
})
|
|
(fetchpatch {
|
|
url = "https://sources.debian.net/data/main/c/clearsilver/0.10.5-1.6/debian/patches/CVE-2011-4357.diff";
|
|
sha256 = "1lfncavxdqckrz03gv97lcliygbpi9lnih944vmdbn9zw6fwcipi";
|
|
})
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Fast, powerful, and language-neutral HTML template system";
|
|
homepage = http://www.clearsilver.net/;
|
|
license = licenses.free;
|
|
};
|
|
}
|