mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-15 15:33:47 +00:00
12 lines
247 B
Nix
12 lines
247 B
Nix
{rustPlatform}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "mrc";
|
|
version = "0.0.1";
|
|
src = ./.;
|
|
|
|
cargoLock.lockFile = finalAttrs.src + /Cargo.lock;
|
|
meta = {
|
|
description = "MPV IPC wrapper";
|
|
mainProgram = "mrc";
|
|
};
|
|
})
|