rust-pager 0.2.4

Yet another pager in Rust
1
2
3
4
5
6
7
8
9
10
{ sources ? import ./nix/sources.nix, }:
let
  pkgs = import sources.nixpkgs {};
in
with pkgs;
mkShell {
  name = "rust-pager-shell";
  nativeBuildInput = [ rustc cargo ];
}