Skip to content

sagikazarmark/nix-garden

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nix flake for Garden

built with nix

This is a flake for installing Garden from its binary distribution channel.

I'm working on a more "native" installation method (tracked in this issue) and hope to submit the results in nixpkgs.

Usage

{
  description = "Your flake";

  inputs = {
    nixpkgs.url = "nixpkgs/nixos-unstable";
    flake-utils.url = "github:numtide/flake-utils";
    garden.url = "github:sagikazarmark/nix-garden";
  };

  outputs = { self, nixpkgs, flake-utils, garden, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages.${system};
      in {
        devShell = pkgs.mkShell {
          buildInputs = [ garden.packages.${system}.garden ];
        };
      });
}

License

The project is licensed under the MIT License.

About

Nix flake for Garden

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages