mxadm/flake.nix

22 lines
511 B
Nix
Raw Permalink Normal View History

2021-05-28 08:52:07 +00:00
{
description = "virtual environments";
inputs.flake-utils.url = "github:numtide/flake-utils";
2021-06-07 19:27:54 +00:00
outputs = { self, flake-utils, nixpkgs, ... }@inputs:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
rustup
rustracer
cargo-outdated
cargo-audit
pkgconfig
openssl.dev
];
2021-05-28 08:52:07 +00:00
};
2021-06-07 19:27:54 +00:00
});
2021-05-28 08:52:07 +00:00
}