mirror of
https://codeberg.org/puppe/financier-nix.git
synced 2025-12-20 00:12:17 +01:00
10 lines
266 B
Nix
10 lines
266 B
Nix
{
|
|
fetchFinancier = { fetchgit }:
|
|
let
|
|
financierLockData = (builtins.fromJSON
|
|
(builtins.readFile ./flake.lock)).nodes.financier.locked;
|
|
in fetchgit {
|
|
inherit (financierLockData) url rev;
|
|
sha256 = financierLockData.narHash;
|
|
};
|
|
}
|