aoc2022/flake.nix

26 lines
605 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; [
2022-12-23 06:33:49 +00:00
(python3.withPackages
(p: with p; [ more-itertools tqdm autologging ]))
2022-12-08 04:02:28 +00:00
ruby
swiProlog
yabasic
rustc
rustfmt
cargo
fuse
pkg-config
];
PKG_CONFIG_PATH = "${pkgs.fuse}/lib/pkgconfig";
};
});
}