Nix flake for Gimlet
This is a flake for installing Gimlet CLI.
{
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 ];
};
});
}
The project is licensed under the MIT License.