Skip to content

hypervideo/rtk-nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This repository contains a nix flake for rtk. You can install rtk into your nix dev shell with:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    flake-utils.url = "github:numtide/flake-utils";
    rtk-nix.url = "github:hypervideo/rtk-nix";
  };

  outputs = { self, nixpkgs, flake-utils, rtk-nix }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = import nixpkgs {
          inherit system;
          overlays = [
            rtk-nix.overlays.default
          ];
        };
      in
      {
        devShells.default = pkgs.mkShell {
          packages = with pkgs; [
            rtk
          ];
        };
      }
    );
}

This repository has an automatically running CI job that checks for new rtk releases and updates the package when a new version is available.

About

Nix flake for https://github.com/rtk-ai/rtk

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors