12 lines
347 B
Nix
12 lines
347 B
Nix
{
|
|
description = "Flake template for a rust project";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem
|
|
(system: { devShells.default = mkShell { packages = [ hello ]; }; });
|
|
}
|