mirror of
https://github.com/aljazceru/gitpear.git
synced 2025-12-18 22:54:27 +01:00
autogenerated flake file
Signed-off-by: dzdidi <deniszalessky@gmail.com>
This commit is contained in:
42
flake.nix
Normal file
42
flake.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
# This flake was initially generated by fh, the CLI for FlakeHub (version 0.1.6)
|
||||
{
|
||||
# A helpful description of your flake
|
||||
description = "pear to pear git transport";
|
||||
|
||||
# Flake inputs
|
||||
inputs = {
|
||||
flake-schemas.url = "https://flakehub.com/f/DeterminateSystems/flake-schemas/*.tar.gz";
|
||||
|
||||
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.*.tar.gz";
|
||||
};
|
||||
|
||||
# Flake outputs that other flakes can use
|
||||
outputs = { self, flake-schemas, nixpkgs }:
|
||||
let
|
||||
# Helpers for producing system-specific outputs
|
||||
supportedSystems = [ "x86_64-darwin" ];
|
||||
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
});
|
||||
in {
|
||||
# Schemas tell Nix about the structure of your flake's outputs
|
||||
schemas = flake-schemas.schemas;
|
||||
|
||||
# Development environments
|
||||
devShells = forEachSupportedSystem ({ pkgs }: {
|
||||
default = pkgs.mkShell {
|
||||
# Pinned packages available in the environment
|
||||
packages = with pkgs; [
|
||||
nodejs-18_x
|
||||
git
|
||||
nixpkgs-fmt
|
||||
];
|
||||
|
||||
# Environment variables
|
||||
env = {
|
||||
GIT_PEAR = "~/.gitpear";
|
||||
};
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user