cci 0.0.1

Control your CI/CD
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs ? import (fetchTarball
  "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") { } }:

with pkgs;

mkShell rec {
  nativeBuildInputs =
    [ pkg-config cargo rustc rust-analyzer rustfmt clippy vhs ];
  buildInputs = [ ];
  LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}