1
Fork 0
xchg-rax-rax/flake.nix

26 lines
528 B
Nix
Raw Normal View History

2023-09-15 11:11:51 +00:00
{
description = "xchg rax, rax";
outputs = { self, nixpkgs, ... }:
let
supportedSystems = [ "x86_64-linux" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
in
{
devShells = forAllSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
default = pkgs.mkShell {
buildInputs = with pkgs;
[
gdb
gnumake
nasm
];
};
});
};
}