File: shell.nix

package info (click to toggle)
rust-crdts 7.2.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 656 kB
  • sloc: perl: 258; python: 148; makefile: 8; sh: 1
file content (6 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    cargo
  ];
}