spond/flake.nix
Jonas Rabenstein e788d55cca initial commit
2025-09-25 16:01:17 +02:00

17 lines
363 B
Nix

{
description = "spond bot";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
devShells = builtins.mapAttrs (_: pkgs: {
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cargo
openssl.dev
pkg-config
];
};
}) nixpkgs.legacyPackages;
};
}