Add direnv to default build Add xonsh-direnv package to overlay and xonsh environment Add virtualisation options
13 lines
334 B
Nix
13 lines
334 B
Nix
self: super:
|
|
{
|
|
xonsh-direnv = super.callPackage ./xonsh-direnv.nix {
|
|
#lib = self.lib;
|
|
buildPythonPackage = self.python3.pkgs.buildPythonPackage;
|
|
fetchPypi = self.python.pkgs.fetchPypi;
|
|
};
|
|
|
|
xonsh = super.xonsh.overridePythonAttrs (old: rec{
|
|
propagatedBuildInputs = old.propagatedBuildInputs ++ [ self.xonsh-direnv ];
|
|
});
|
|
}
|