mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
5e94616bdb
Until PR #236458 it was doing auto-detection (!) which chose "root" (at least sometimes): https://hydra.nixos.org/log/wbxd753q70plgxjm3xdljky9a81692kk-cockpit-287.drv Now it failed due to missing getent: https://hydra.nixos.org/build/225207182/nixlog/2/tail
230 lines
5.6 KiB
Nix
230 lines
5.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, fetchurl
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, bashInteractive
|
|
, cacert
|
|
, coreutils
|
|
, dbus
|
|
, docbook_xml_dtd_43
|
|
, docbook_xsl
|
|
, findutils
|
|
, gettext
|
|
, git
|
|
, glib
|
|
, glibc
|
|
, glib-networking
|
|
, gnused
|
|
, gnutls
|
|
, json-glib
|
|
, krb5
|
|
, libssh
|
|
, libxcrypt
|
|
, libxslt
|
|
, makeWrapper
|
|
, nodejs
|
|
, nixosTests
|
|
, openssh
|
|
, openssl
|
|
, pam
|
|
, pkg-config
|
|
, polkit
|
|
, python3Packages
|
|
, ripgrep
|
|
, runtimeShell
|
|
, systemd
|
|
, udev
|
|
, xmlto
|
|
}:
|
|
|
|
let
|
|
pythonWithGobject = python3Packages.python.withPackages (p: with p; [
|
|
pygobject3
|
|
]);
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cockpit";
|
|
version = "287";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cockpit-project";
|
|
repo = "cockpit";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "sha256-tIZOI3jiMRaGHMXS1mA1Tom9ij3L/VuxDUJdnEc7SSc=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
makeWrapper
|
|
docbook_xml_dtd_43
|
|
docbook_xsl
|
|
findutils
|
|
gettext
|
|
git
|
|
(lib.getBin libxslt)
|
|
nodejs
|
|
openssl
|
|
pam
|
|
pkg-config
|
|
pythonWithGobject.python
|
|
python3Packages.setuptools
|
|
systemd
|
|
ripgrep
|
|
xmlto
|
|
];
|
|
|
|
buildInputs = [
|
|
(lib.getDev glib)
|
|
libxcrypt
|
|
gnutls
|
|
json-glib
|
|
krb5
|
|
libssh
|
|
polkit
|
|
udev
|
|
];
|
|
|
|
postPatch = ''
|
|
# Instead of requiring Internet access to do an npm install to generate the package-lock.json
|
|
# it copies the package-lock.json already present in the node_modules folder fetched as a git
|
|
# submodule.
|
|
echo "#!/bin/sh" > test/node_modules
|
|
|
|
substituteInPlace src/tls/cockpit-certificate-helper.in \
|
|
--replace 'COCKPIT_CONFIG="@sysconfdir@/cockpit"' 'COCKPIT_CONFIG=/etc/cockpit'
|
|
|
|
substituteInPlace src/tls/cockpit-certificate-ensure.c \
|
|
--replace '#define COCKPIT_SELFSIGNED_PATH PACKAGE_SYSCONF_DIR COCKPIT_SELFSIGNED_FILENAME' '#define COCKPIT_SELFSIGNED_PATH "/etc" COCKPIT_SELFSIGNED_FILENAME'
|
|
|
|
substituteInPlace src/common/cockpitconf.c \
|
|
--replace 'const char *cockpit_config_dirs[] = { PACKAGE_SYSCONF_DIR' 'const char *cockpit_config_dirs[] = { "/etc"'
|
|
|
|
# instruct users with problems to create a nixpkgs issue instead of nagging upstream directly
|
|
substituteInPlace configure.ac \
|
|
--replace 'devel@lists.cockpit-project.org' 'https://github.com/NixOS/nixpkgs/issues/new?assignees=&labels=0.kind%3A+bug&template=bug_report.md&title=cockpit%25'
|
|
|
|
patchShebangs \
|
|
test/common/pixel-tests \
|
|
test/common/run-tests \
|
|
test/common/tap-cdp \
|
|
test/static-code \
|
|
tools/escape-to-c \
|
|
tools/make-compile-commands \
|
|
tools/node-modules \
|
|
tools/termschutz \
|
|
tools/webpack-make.js
|
|
|
|
for f in node_modules/.bin/*; do
|
|
patchShebangs $(realpath $f)
|
|
done
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
cp node_modules/.package-lock.json package-lock.json
|
|
|
|
substituteInPlace src/systemd_ctypes/libsystemd.py \
|
|
--replace libsystemd.so.0 ${systemd}/lib/libsystemd.so.0
|
|
|
|
for f in pkg/**/*.js pkg/**/*.jsx test/**/* src/**/*; do
|
|
# some files substituteInPlace report as missing and it's safe to ignore them
|
|
substituteInPlace "$(realpath "$f")" \
|
|
--replace '"/usr/bin/' '"' \
|
|
--replace '"/bin/' '"' || true
|
|
done
|
|
|
|
substituteInPlace src/common/Makefile-common.am \
|
|
--replace 'TEST_PROGRAM += test-pipe' "" # skip test-pipe because it hangs the build
|
|
|
|
substituteInPlace test/pytest/*.py \
|
|
--replace "'bash" "'${bashInteractive}/bin/bash"
|
|
|
|
echo "m4_define(VERSION_NUMBER, [${version}])" > version.m4
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--enable-prefix-only=yes"
|
|
"--disable-pcp" # TODO: figure out how to package its dependency
|
|
"--with-default-session-path=/run/wrappers/bin:/run/current-system/sw/bin"
|
|
"--with-admin-group=root" # TODO: really? Maybe "wheel"?
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
preBuild = ''
|
|
patchShebangs \
|
|
tools/test-driver
|
|
'';
|
|
|
|
postBuild = ''
|
|
chmod +x \
|
|
src/systemd/update-motd \
|
|
src/tls/cockpit-certificate-helper \
|
|
src/ws/cockpit-desktop
|
|
|
|
patchShebangs \
|
|
src/systemd/update-motd \
|
|
src/tls/cockpit-certificate-helper \
|
|
src/ws/cockpit-desktop
|
|
|
|
PATH=${pythonWithGobject}/bin patchShebangs src/client/cockpit-client
|
|
|
|
substituteInPlace src/ws/cockpit-desktop \
|
|
--replace ' /bin/bash' ' ${runtimeShell}'
|
|
'';
|
|
|
|
fixupPhase = ''
|
|
runHook preFixup
|
|
|
|
wrapProgram $out/libexec/cockpit-certificate-helper \
|
|
--prefix PATH : ${lib.makeBinPath [ coreutils openssl ]} \
|
|
--run 'cd $(mktemp -d)'
|
|
|
|
wrapProgram $out/share/cockpit/motd/update-motd \
|
|
--prefix PATH : ${lib.makeBinPath [ gnused ]}
|
|
|
|
substituteInPlace $out/share/polkit-1/actions/org.cockpit-project.cockpit-bridge.policy \
|
|
--replace /usr $out
|
|
|
|
runHook postFixup
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
bashInteractive
|
|
cacert
|
|
dbus
|
|
glib-networking
|
|
openssh
|
|
python3Packages.pytest
|
|
python3Packages.vulture
|
|
];
|
|
checkPhase = ''
|
|
export GIO_EXTRA_MODULES=$GIO_EXTRA_MODULES:${glib-networking}/lib/gio/modules
|
|
export G_DEBUG=fatal-criticals
|
|
export G_MESSAGES_DEBUG=cockpit-ws,cockpit-wrapper,cockpit-bridge
|
|
export PATH=$PATH:$(pwd)
|
|
|
|
cockpit-bridge --version
|
|
make pytest -j$NIX_BUILD_CORES || true
|
|
make check -j$NIX_BUILD_CORES || true
|
|
test/static-code
|
|
npm run eslint
|
|
npm run stylelint
|
|
'';
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) cockpit; };
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Web-based graphical interface for servers";
|
|
homepage = "https://cockpit-project.org/";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ lucasew ];
|
|
};
|
|
}
|