rename to ptouch-remote

This commit is contained in:
Robin Appelman 2025-10-28 19:25:09 +01:00
commit 1422f9b8be
12 changed files with 43 additions and 40 deletions

View file

@ -9,7 +9,7 @@
version = (fromTOML (readFile ../Cargo.toml)).package.version;
in
rustPlatform.buildRustPackage rec {
pname = "ptouch-api";
pname = "ptouch-remote";
inherit src version;
@ -19,8 +19,8 @@ in
postInstall = ''
mkdir -p $out/lib/udev/rules.d/
cp ./51-ptouch-api.rules $out/lib/udev/rules.d/
cp ./51-ptouch-remote.rules $out/lib/udev/rules.d/
'';
meta.mainProgram = "ptouch-api";
meta.mainProgram = "ptouch-remote";
}