about summary refs log tree commit diff stats
path: root/pkgs/by-name/ya/yambar-modules/package.nix
blob: 79281429d557dc70948b98e4c69e2150c82610b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{rustPlatform}:
rustPlatform.buildRustPackage {
  pname = "yambar-modules";
  version = "0.1.0";

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

  meta = {
    mainProgram = "yambar-modules";
  };
}