about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/lf-make-map/lf_make_map.nix
blob: afb067b84340929d3a4417a9fe9095859437493e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{rustPlatform}:
rustPlatform.buildRustPackage {
  pname = "lf-make-map";
  version = "0.1.0";

  src = ./.;
  cargoLock = {
    lockFile = ./Cargo.lock;
  };
}