6 lines
194 B
Nix
6 lines
194 B
Nix
{ final, prev, ... }:
|
|
{
|
|
opensnitch-ui = prev.opensnitch-ui.overrideAttrs (old: {
|
|
propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ final.python311Packages.packaging ];
|
|
});
|
|
}
|