Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
946 B
Nix
46 lines
946 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
nixosTests,
|
|
php,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "cloudlog";
|
|
version = "2.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "magicbug";
|
|
repo = "Cloudlog";
|
|
rev = version;
|
|
hash = "sha256-My0z4MW/9O0+ErIh7SEWU3KGJ4UQDmhwJICtBgQ4+q8=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace index.php \
|
|
--replace "define('ENVIRONMENT', 'development');" "define('ENVIRONMENT', 'production');"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir $out/
|
|
cp -R ./* $out
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
inherit (nixosTests) cloudlog;
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Web based amateur radio logging application built using PHP & MySQL";
|
|
license = licenses.mit;
|
|
homepage = "https://www.magicbug.co.uk/cloudlog";
|
|
platforms = php.meta.platforms;
|
|
maintainers = with maintainers; [ melling ];
|
|
};
|
|
}
|