devshell/flake.nix

24 lines
581 B
Nix
Raw Normal View History

2023-12-08 13:18:23 +05:30
{
description = "A collection of handy dev-shells";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in
{
2023-12-08 13:18:53 +05:30
devShells = {
2023-12-08 15:16:15 +05:30
go = import ./shells/go.nix { inherit pkgs; };
haskell = import ./shells/haskell.nix { inherit pkgs; };
python = import ./shells/python.nix { inherit pkgs; };
2023-12-08 13:18:53 +05:30
};
2023-12-08 13:18:23 +05:30
}
);
}