mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-08 15:49:44 +00:00
11 lines
363 B
Nix
11 lines
363 B
Nix
|
# https://nixos.wiki/wiki/Flakes#Using_flakes_project_from_a_legacy_Nix
|
||
|
(import (
|
||
|
let
|
||
|
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
|
||
|
in fetchTarball {
|
||
|
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
|
||
|
sha256 = lock.nodes.flake-compat.locked.narHash; }
|
||
|
) {
|
||
|
src = ./.;
|
||
|
}).shellNix
|