blob: c8578c9aea959e025f63d887f42327c92f48c409 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
self: super: {
neomutt = super.neomutt.overrideAttrs (old:
{
buildInputs = old.buildInputs ++ [ self.gdbm ];
configureFlags = old.configureFlags ++ [ "--gdbm" ];
}
);
}
|