meta: rename to 'mpvrc'

mrc is taken :(

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I2cf0cab8dce04cd04981177d43b9b9b76a6a6964
This commit is contained in:
raf 2026-03-29 21:11:07 +03:00
commit 1f1a94f747
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
9 changed files with 375 additions and 255 deletions

View file

@ -8,8 +8,8 @@
s = ../.;
in
rustPlatform.buildRustPackage (finalAttrs: {
pname = "mrc";
version = (builtins.fromTOML (builtins.readFile (s + /Cargo.toml))).package.version;
pname = "mpvrc";
version = (lib.importTOML (s + /Cargo.toml)).package.version;
src = fs.toSource {
root = s;
@ -32,12 +32,11 @@ in
];
cargoLock.lockFile = "${finalAttrs.src}/Cargo.lock";
useFetchCargoVendor = true;
meta = {
description = "IPC wrapper & command-line controller for MPV, the video player";
homePage = "https://github.com/notashelf/mrc";
mainProgram = "mrc";
homePage = "https://github.com/notashelf/mpvrc";
mainProgram = "mpvrc";
license = lib.licenses.mpl20;
maintainers = [lib.maintainers.NotAShelf];
};

View file

@ -4,12 +4,13 @@
rustfmt,
clippy,
cargo,
taplo,
openssl,
pkg-config,
rustc,
}:
mkShell {
name = "mrc";
name = "mpvrc";
packages = [
cargo
rustc
@ -17,6 +18,7 @@ mkShell {
rust-analyzer
clippy
(rustfmt.override {asNightly = true;})
taplo
# For TLS and friends
openssl