567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
71 lines
1.5 KiB
Nix
71 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonApplication,
|
|
fetchFromGitea,
|
|
six,
|
|
sphinxHook,
|
|
sphinx-rtd-theme,
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "cdist";
|
|
version = "7.0.0";
|
|
format = "setuptools";
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"doc"
|
|
];
|
|
|
|
src = fetchFromGitea {
|
|
domain = "code.ungleich.ch";
|
|
owner = "ungleich-public";
|
|
repo = "cdist";
|
|
rev = version;
|
|
hash = "sha256-lIx0RtGQJdY2e00azI9yS6TV+5pCegpKOOD0dQmgMqA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
six
|
|
sphinxHook
|
|
sphinx-rtd-theme
|
|
];
|
|
|
|
sphinxRoot = "docs/src";
|
|
|
|
# "make man" creates symlinks in docs/src needed by sphinxHook.
|
|
postPatch = ''
|
|
echo "VERSION = '$version'" > cdist/version.py
|
|
|
|
make man
|
|
'';
|
|
|
|
preConfigure = ''
|
|
export HOME=/tmp
|
|
'';
|
|
|
|
# Test suite requires either non-chrooted environment or root.
|
|
#
|
|
# When "machine_type" explorer figures out that it is running inside
|
|
# chroot, it assumes that it has enough privileges to escape it.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "cdist" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share
|
|
mv docs/dist/man $out/share
|
|
'';
|
|
|
|
meta = {
|
|
description = "Minimalistic configuration management system";
|
|
homepage = "https://www.sdi.st";
|
|
changelog = "https://code.ungleich.ch/ungleich-public/cdist/src/tag/${version}/docs/changelog";
|
|
|
|
# Mostly. There are still couple types that are gpl3-only.
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ kaction ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|