mirror of
https://github.com/vale981/website
synced 2025-03-04 17:11:40 -05:00
fix typo
This commit is contained in:
parent
e6058f7a07
commit
496d755ddc
2 changed files with 4 additions and 8 deletions
|
@ -2942,12 +2942,10 @@ project in full nix using [[https://github.com/nix-community/poetry2nix][poetry2
|
||||||
|
|
||||||
# this enables interactive plotting support with GTK
|
# this enables interactive plotting support with GTK
|
||||||
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
||||||
matplotlib = with pkgs; prev.matplotlib.overridePythonAttrs (
|
matplotlib = with pkgs; prev.matplotlib.override
|
||||||
old:
|
|
||||||
{
|
{
|
||||||
passthru.args.enableGtk3 = true;
|
passthru.args.enableGtk3 = true;
|
||||||
}
|
};
|
||||||
);
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
default = self.packages.${system}.yourPackage;
|
default = self.packages.${system}.yourPackage;
|
||||||
|
|
|
@ -46,12 +46,10 @@ project in full nix using [poetry2nix](https://github.com/nix-community/poetry2n
|
||||||
|
|
||||||
# this enables interactive plotting support with GTK
|
# this enables interactive plotting support with GTK
|
||||||
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
overrides = poetry2nix.overrides.withDefaults (final: prev: {
|
||||||
matplotlib = with pkgs; prev.matplotlib.overridePythonAttrs (
|
matplotlib = with pkgs; prev.matplotlib.override
|
||||||
old:
|
|
||||||
{
|
{
|
||||||
passthru.args.enableGtk3 = true;
|
passthru.args.enableGtk3 = true;
|
||||||
}
|
};
|
||||||
);
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
default = self.packages.${system}.yourPackage;
|
default = self.packages.${system}.yourPackage;
|
||||||
|
|
Loading…
Add table
Reference in a new issue