summary refs log blame commit diff
path: root/pkgs/servers/limesurvey/default.nix
blob: 21863018087662cba248385b701f8131ee1ab2d3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                       

                         
                       
                             




                         
                                                                    

    





                                                
                   

                      

                                  
                                                                       

                       

     
                           

                                                   
                                            
                                              
                                     

    
{ stdenv, fetchFromGitHub, writeText }:

stdenv.mkDerivation rec {
  pname = "limesurvey";
  version = "3.17.12+190823";

  src = fetchFromGitHub {
    owner = "LimeSurvey";
    repo = "LimeSurvey";
    rev = version;
    sha256 = "1i7jpxndrbya5ggl4babscwzmxx4c0jwri5kpl7h2ihqrn90m4b5";
  };

  phpConfig = writeText "config.php" ''
  <?php
    return require(getenv('LIMESURVEY_CONFIG'));
  ?>
  '';

  installPhase = ''
    runHook preInstall

    mkdir -p $out/share/limesurvey
    cp -r . $out/share/limesurvey
    cp ${phpConfig} $out/share/limesurvey/application/config/config.php

    runHook postInstall
  '';

  meta = with stdenv.lib; {
    description = "Open source survey application";
    license = licenses.gpl2;
    homepage = "https://www.limesurvey.org";
    maintainers = with maintainers; [offline];
    platforms = with platforms; unix;
  };
}