2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, writeText, nixosTests }:
|
2015-02-07 20:20:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-06 12:40:22 +00:00
|
|
|
pname = "limesurvey";
|
2020-10-12 19:39:03 +01:00
|
|
|
version = "3.23.7+201006";
|
2015-02-07 20:20:53 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LimeSurvey";
|
|
|
|
repo = "LimeSurvey";
|
|
|
|
rev = version;
|
2020-10-12 19:39:03 +01:00
|
|
|
sha256 = "19p978p0flknsg3iqlrrbr76qsk5ha2a84nxywqsvjrjvqrh5jrc";
|
2015-02-07 20:20:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phpConfig = writeText "config.php" ''
|
|
|
|
<?php
|
|
|
|
return require(getenv('LIMESURVEY_CONFIG'));
|
|
|
|
?>
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-08-24 13:15:13 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2019-03-14 01:43:50 +00:00
|
|
|
mkdir -p $out/share/limesurvey
|
|
|
|
cp -r . $out/share/limesurvey
|
2015-02-07 20:20:53 +00:00
|
|
|
cp ${phpConfig} $out/share/limesurvey/application/config/config.php
|
2019-08-24 13:15:13 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2015-02-07 20:20:53 +00:00
|
|
|
'';
|
|
|
|
|
2020-09-01 21:47:38 +01:00
|
|
|
passthru.tests = {
|
|
|
|
smoke-test = nixosTests.limesurvey;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-02-07 20:20:53 +00:00
|
|
|
description = "Open source survey application";
|
|
|
|
license = licenses.gpl2;
|
2019-03-14 01:43:50 +00:00
|
|
|
homepage = "https://www.limesurvey.org";
|
2015-02-07 20:20:53 +00:00
|
|
|
maintainers = with maintainers; [offline];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2021-01-29 22:42:04 +00:00
|
|
|
knownVulnerabilities = [
|
|
|
|
# https://github.com/LimeSurvey/LimeSurvey/blob/3.x-LTS/docs/release_notes.txt
|
|
|
|
"Unauthorized access to statistics of a survey with certain permission configurations"
|
|
|
|
"Persistent XSS in browse response"
|
|
|
|
];
|
2015-02-07 20:20:53 +00:00
|
|
|
};
|
|
|
|
}
|