ax25-tools: set localstatedir to /var/lib
Previously, localstatedir was being defaulting to path inside /nix/store so some AX.25 applications were not able to write their state to disk.
This commit is contained in:
@@ -17,7 +17,10 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "sha256-kqnLi1iobcufVWMPxUyaRsWKIPyTvtUkuMERGQs2qgY=";
|
||||
};
|
||||
|
||||
configureFlags = [ "--sysconfdir=/etc" ];
|
||||
configureFlags = [
|
||||
"--sysconfdir=/etc"
|
||||
"--localstatedir=/var/lib"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Non-GUI tools used to configure an AX.25 enabled computer";
|
||||
|
||||
Reference in New Issue
Block a user