mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
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:
parent
068166ff0f
commit
0d75120022
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user