2024-03-18 16:01:57 +01:00
|
|
|
{ lib
|
|
|
|
, fetchzip
|
|
|
|
, nixosTests
|
|
|
|
, php
|
|
|
|
, stdenv
|
|
|
|
, writeText
|
|
|
|
}:
|
2020-03-16 23:01:23 +01:00
|
|
|
|
2023-03-12 16:55:17 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-03-16 23:01:23 +01:00
|
|
|
pname = "engelsystem";
|
2024-03-17 12:21:41 +01:00
|
|
|
version = "3.5.0";
|
2020-03-16 23:01:23 +01:00
|
|
|
|
|
|
|
src = fetchzip {
|
2023-08-10 01:05:54 +02:00
|
|
|
url = "https://github.com/engelsystem/engelsystem/releases/download/v${version}/engelsystem-v${version}.zip";
|
2024-03-17 12:21:41 +01:00
|
|
|
hash = "sha256-RbzAHBZN02u14WaLtq5EOh4XwIdHKvzX7NhDBhn/CaU=";
|
2020-03-16 23:01:23 +01:00
|
|
|
};
|
|
|
|
|
2024-03-18 16:01:57 +01:00
|
|
|
buildInputs = [ php ];
|
2020-03-16 23:01:23 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
# prepare
|
|
|
|
rm -r ./storage/
|
|
|
|
|
|
|
|
ln -sf /etc/engelsystem/config.php ./config/config.php
|
|
|
|
ln -sf /var/lib/engelsystem/storage/ ./storage
|
|
|
|
|
|
|
|
mkdir -p $out/share/engelsystem
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp -r . $out/share/engelsystem
|
|
|
|
|
|
|
|
echo $(command -v php)
|
|
|
|
# The patchShebangAuto function always used the php without extensions, so path the shebang manually
|
2024-03-18 16:01:57 +01:00
|
|
|
sed -i -e "1 s|.*|#\!${lib.getExe php}|" "$out/share/engelsystem/bin/migrate"
|
2020-03-16 23:01:23 +01:00
|
|
|
ln -s "$out/share/engelsystem/bin/migrate" "$out/bin/migrate"
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2020-05-24 14:20:58 +02:00
|
|
|
passthru.tests = nixosTests.engelsystem;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2024-03-18 16:01:57 +01:00
|
|
|
changelog = "https://github.com/engelsystem/engelsystem/releases/tag/v${version}";
|
2020-03-16 23:01:23 +01:00
|
|
|
description =
|
2020-10-27 21:11:22 +01:00
|
|
|
"Coordinate your volunteers in teams, assign them to work shifts or let them decide for themselves when and where they want to help with what";
|
2020-03-16 23:01:23 +01:00
|
|
|
homepage = "https://engelsystem.de";
|
2022-05-05 02:46:39 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
mainProgram = "migrate";
|
2024-03-18 16:01:57 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2020-03-16 23:01:23 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|