cronie: fixup build to reference out of store paths for state & config (#452426)

This commit is contained in:
Aaron Andersen
2025-10-17 02:34:29 +00:00
committed by GitHub
+6 -1
View File
@@ -16,6 +16,11 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-WrzdpE9t7vWpc8QFoFs+S/HgHwsidRNmfcHp7ltSWQw=";
};
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
];
nativeBuildInputs = [ autoreconfHook ];
outputs = [
@@ -36,6 +41,6 @@ stdenv.mkDerivation (finalAttrs: {
];
mainProgram = "crond";
maintainers = [ ];
platforms = lib.platforms.all;
platforms = lib.platforms.linux;
};
})