epgstation: keep old buildInputs in overrideAttrs

This commit is contained in:
midchildan 2022-05-14 15:24:01 +09:00
parent 834477e4d4
commit 6a0c84d594
No known key found for this signature in database
GPG key ID: A64DE57FA5963935

View file

@ -41,7 +41,7 @@ let
# dependencies are pruned afterwards.
production = false;
buildInputs = [ bash ];
buildInputs = (drv.buildInputs or [ ]) ++ [ bash ];
nativeBuildInputs = (drv.nativeBuildInputs or [ ]) ++ [
makeWrapper
];