mirror of
https://codeberg.org/puppe/financier-nix.git
synced 2025-12-20 08:22:18 +01:00
Fix src for financier
We accidentally used to rely on the src for financier not having been garbage-collected.
This commit is contained in:
parent
25c955aac5
commit
98ab6e58f1
4 changed files with 10 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
let
|
||||
meta = import ./meta.nix;
|
||||
src = pkgs.fetchgit { inherit (meta) url rev sha256; };
|
||||
src = (import ./helpers.nix).fetchFinancier { inherit (pkgs) fetchgit; inherit meta; };
|
||||
in
|
||||
pkgs.mkShell {
|
||||
shellHook = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue