nix-files/pkgs/patched/libgweather/default.nix

14 lines
244 B
Nix

{ lib
, libgweather
, ...
}@attrs:
(libgweather.override
(removeAttrs attrs [ "libgweather" ])
).overrideAttrs (upstream: {
patches = lib.unique (
(upstream.patches or []) ++ [
./nws-fix-null-string-comparison.patch
]
);
})