e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitHub, buildNpmPackage, python3, nodejs, nixosTests }:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "uptime-kuma";
|
|
version = "1.23.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "louislam";
|
|
repo = "uptime-kuma";
|
|
rev = version;
|
|
hash = "sha256-7JWn78gRLzuXuZjhTvjdJ7JVtLOtQ08zyokqkPdzYh0=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-MKONzKCGYeMQK8JR9W9KiPLaqP/F0uAOzql4wZK4Sp4=";
|
|
|
|
patches = [
|
|
# Fixes the permissions of the database being not set correctly
|
|
# See https://github.com/louislam/uptime-kuma/pull/2119
|
|
./fix-database-permissions.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
CYPRESS_INSTALL_BINARY = 0; # Stops Cypress from trying to download binaries
|
|
|
|
postInstall = ''
|
|
cp -r dist $out/lib/node_modules/uptime-kuma/
|
|
|
|
# remove references to nodejs source
|
|
rm -r $out/lib/node_modules/uptime-kuma/node_modules/@louislam/sqlite3/build-tmp-napi-v6
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${nodejs}/bin/node $out/bin/uptime-kuma-server \
|
|
--add-flags $out/lib/node_modules/uptime-kuma/server/server.js \
|
|
--chdir $out/lib/node_modules/uptime-kuma
|
|
'';
|
|
|
|
passthru.tests.uptime-kuma = nixosTests.uptime-kuma;
|
|
|
|
meta = with lib; {
|
|
description = "Fancy self-hosted monitoring tool";
|
|
mainProgram = "uptime-kuma-server";
|
|
homepage = "https://github.com/louislam/uptime-kuma";
|
|
changelog = "https://github.com/louislam/uptime-kuma/releases/tag/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ julienmalka ];
|
|
# FileNotFoundError: [Errno 2] No such file or directory: 'xcrun'
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
};
|
|
}
|