mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-18 16:49:53 +00:00
nix: cleanup
This commit is contained in:
parent
93a724bb01
commit
0266e3930c
4 changed files with 21 additions and 13 deletions
|
|
@ -1,12 +1,20 @@
|
|||
{rustPlatform}:
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "mrc";
|
||||
version = "0.0.1";
|
||||
src = ./.;
|
||||
version = "0.1.0";
|
||||
src = builtins.path {
|
||||
path = ../.;
|
||||
name = "mrc";
|
||||
};
|
||||
|
||||
cargoLock.lockFile = finalAttrs.src + /Cargo.lock;
|
||||
|
||||
meta = {
|
||||
description = "MPV IPC wrapper";
|
||||
description = "IPC wrapper & command-line controller for MPV, the video player ";
|
||||
mainProgram = "mrc";
|
||||
license = lib.licenses.mpl20;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue