You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
731 B
29 lines
731 B
{
|
|
description = "Juni's Vanilla Flake Template";
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
|
|
flake-utils = {
|
|
url = "github:numtide/flake-utils";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
with flake-utils.lib;
|
|
eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
version = "0.1.0";
|
|
name = "package name";
|
|
in {
|
|
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [ python3 poetry gunicorn ];
|
|
};
|
|
|
|
defaultPackage = pkgs.stdenv.mkDerivation { inherit name version; };
|
|
|
|
formatter = nixpkgs.legacyPackages."${system}".nixfmt;
|
|
|
|
});
|
|
}
|