mirror of
https://github.com/nix-community/home-manager
synced 2024-11-22 20:53:14 +00:00
parent
882bd8118b
commit
4293902b64
1 changed files with 2 additions and 2 deletions
|
@ -158,13 +158,13 @@ in {
|
||||||
xdg.configFile."offlineimap/get_settings.py".text = cfg.pythonFile;
|
xdg.configFile."offlineimap/get_settings.py".text = cfg.pythonFile;
|
||||||
xdg.configFile."offlineimap/get_settings.pyc".source = "${
|
xdg.configFile."offlineimap/get_settings.pyc".source = "${
|
||||||
pkgs.runCommandLocal "get_settings-compile" {
|
pkgs.runCommandLocal "get_settings-compile" {
|
||||||
nativeBuildInputs = [ pkgs.python2 ];
|
nativeBuildInputs = [ pkgs.offlineimap ];
|
||||||
pythonFile = cfg.pythonFile;
|
pythonFile = cfg.pythonFile;
|
||||||
passAsFile = [ "pythonFile" ];
|
passAsFile = [ "pythonFile" ];
|
||||||
} ''
|
} ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp $pythonFilePath $out/bin/get_settings.py
|
cp $pythonFilePath $out/bin/get_settings.py
|
||||||
python2 -m py_compile $out/bin/get_settings.py
|
python -m py_compile $out/bin/get_settings.py
|
||||||
''
|
''
|
||||||
}/bin/get_settings.pyc";
|
}/bin/get_settings.pyc";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue