Update location of financier repository

It is now hosted at codeberg.org.
This commit is contained in:
Martin Puppe 2022-04-08 01:57:25 +02:00
parent dd5f51d9cc
commit 36bf32ac57
3 changed files with 13 additions and 14 deletions

View file

@ -3,10 +3,8 @@
let
financierLockData = (builtins.fromJSON
(builtins.readFile ./flake.lock)).nodes.financier.locked;
inherit (financierLockData) narHash owner repo rev;
url = "https://gitlab.com/${owner}/${repo}.git";
in fetchgit {
inherit url rev;
sha256 = narHash;
inherit (financierLockData) url rev;
sha256 = financierLockData.narHash;
};
}