mirror of
https://github.com/kittywitch/ida-pro-overlay.git
synced 2026-02-09 08:51:00 -08:00
17 lines
270 B
Nix
17 lines
270 B
Nix
{
|
|
description = "Nix flake for IDA Pro";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
...
|
|
}:
|
|
{
|
|
overlays.default = self: super: {
|
|
ida-pro = import ./packages/ida-pro.nix;
|
|
};
|
|
};
|
|
}
|