Unverified Commit c81b4b1a authored by Aaron Andersen's avatar Aaron Andersen Committed by GitHub
Browse files

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

parents 9a741f92 cf784df2
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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;
  };
})