aoc2022/flake.nix

25 lines
527 B
Nix
Raw Normal View History

2022-12-08 04:02:28 +00:00
{
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
legacyPackages = pkgs;
devShell = pkgs.mkShell {
packages = with pkgs; [
python3
ruby
swiProlog
yabasic
rustc
rustfmt
cargo
fuse
pkg-config
];
PKG_CONFIG_PATH = "${pkgs.fuse}/lib/pkgconfig";
};
});
}