15 lines
389 B
Nix
15 lines
389 B
Nix
{
|
|
description = "Simple flake with a devshell";
|
|
|
|
# Add all your dependencies here
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
|
blueprint.url = "github:numtide/blueprint";
|
|
blueprint.inputs.nixpkgs.follows = "nixpkgs";
|
|
sqlit.url = "github:Maxteabag/sqlit";
|
|
};
|
|
|
|
# Load the blueprint
|
|
outputs = inputs: inputs.blueprint { inherit inputs; };
|
|
}
|