Initial commit

This commit is contained in:
Moritz Sanft 2024-10-15 17:54:04 +02:00
parent 2c07e5fcba
commit bf523e35d0
No known key found for this signature in database
GPG key ID: 335D28368B1DA615
6 changed files with 177 additions and 39 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "Nix flake for IDA Pro";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
outputs =
{
...
}:
{
overlays.default = self: super: {
ida-pro = self.packages.x86_64-linux.ida-pro;
};
};
}