mirror of
https://github.com/radareorg/radare2
synced 2026-08-22 20:23:32 -04:00
15 lines
388 B
Nix
15 lines
388 B
Nix
{
|
|
outputs =
|
|
{ self }:
|
|
let
|
|
lock = builtins.fromJSON (builtins.readFile ./dist/nix/flake.lock);
|
|
nixpkgsLocked = lock.nodes.nixpkgs.locked;
|
|
nixpkgs = builtins.getFlake (
|
|
"tarball+" + nixpkgsLocked.url + "?narHash=" + nixpkgsLocked.narHash
|
|
);
|
|
flake = import ./dist/nix/flake.nix;
|
|
in
|
|
flake.outputs {
|
|
inherit self nixpkgs;
|
|
};
|
|
}
|