workset 0.1.0

Manage git repos with worksets
Documentation
1
2
3
4
5
6
7
8
9
10
11
{ 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 ];
  buildInputs = [ ];
  LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
}