Skip to content

sagikazarmark/nix-gimlet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nix flake for Gimlet

GitHub Workflow Status built with nix

This is a flake for installing Gimlet CLI.

Usage

{
  description = "Your flake";

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

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

License

The project is licensed under the MIT License.

About

Nix flake for Gimlet

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages