1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-01 22:50:59 +01:00

Fix applyOverride() for github

This commit is contained in:
Eelco Dolstra 2020-06-09 13:45:07 +02:00
parent 1205b41849
commit 6cfc2db494
3 changed files with 7 additions and 4 deletions

View file

@ -91,6 +91,7 @@ bool Input::operator ==(const Input & other) const
bool Input::contains(const Input & other) const
{
if (*this == other) return true;
auto other2(other);
other2.attrs.erase("ref");
other2.attrs.erase("rev");