engram 0.3.1

A fast and atomic version control system for portable file backups
1
2
3
4
5
6
7
8
9
10
11
{
  pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
  inputsFrom = [ (pkgs.callPackage ./default.nix { }) ];
  buildInputs = with pkgs; [
    rust-analyzer
    rustfmt
    cargo
  ];
}