mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-19 00:59:52 +00:00
meta: rename to 'mpvrc'
mrc is taken :( Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I2cf0cab8dce04cd04981177d43b9b9b76a6a6964
This commit is contained in:
parent
8c48acf693
commit
1f1a94f747
9 changed files with 375 additions and 255 deletions
|
|
@ -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];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue