<#3738 [FlyteCTL Feature] flytectl nix package> Is...
# flyte-github
a
#3738 [FlyteCTL Feature] flytectl nix package Issue created by rupurt Describe the feature/command for FlyteCTL To simplify installation across machines, projects and versions in a repeatable manner it would be great to have an officially supported nix package. Provide a possible output or UX example
flake.nix
Copy code
{
  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
  };

  outputs = {
    self,
    nixpkgs,
    flake-utils
  }:
    flake-utils.lib.eachDefaultSystem
      (system:
        let
          pkgs = import nixpkgs { inherit system; };
        in
        with pkgs;
        {
          devShells.default = mkShell {
            buildInputs = [ pkgs.flytectl ];
          };
        }
      );
}
Are you sure this issue hasn't been raised already? ☑︎ Yes Have you read the Code of Conduct? ☑︎ Yes flyteorg/flyte