mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-16 07:53:48 +00:00
20 lines
394 B
Nix
20 lines
394 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "mrc";
|
|
version = "0.1.0";
|
|
src = builtins.path {
|
|
path = ../.;
|
|
name = "mrc";
|
|
};
|
|
|
|
cargoLock.lockFile = finalAttrs.src + /Cargo.lock;
|
|
|
|
meta = {
|
|
description = "IPC wrapper & command-line controller for MPV, the video player ";
|
|
mainProgram = "mrc";
|
|
license = lib.licenses.mpl20;
|
|
};
|
|
})
|