Hello. I called fetchurl twice with different urls, but with same hash parameters, the hash of a data from the link is different. The result was that i got the same data (data should have been different).
icon = builtins.fetchurl {
url = "https://www.youtube.com/s/desktop/510f0670/img/favicon.ico";
sha256 = "07cip1niccc05p124xggbmrl9p3n9kvzcinmkpakcx518gxd1ccb";
};
...
icon = builtins.fetchurl {
url = "https://www.linux.org.ru/favicon.ico";
sha256 = "07cip1niccc05p124xggbmrl9p3n9kvzcinmkpakcx518gxd1ccb";
};
I was setting search engines for home-manager firefox. This is how home-manager puts a data to the firfox parameter. I’m just worried it might be a bug.