nix: cleanup (#75)

* dev: typo in cache job name

* nix: cleanup
This commit is contained in:
NotAShelf
2023-08-07 23:11:31 +03:00
committed by GitHub
parent e6129f6f84
commit 59e0bf6e57
3 changed files with 15 additions and 10 deletions

View File

@@ -16,11 +16,13 @@
cargoToml = builtins.fromTOML (builtins.readFile ../../plugins/${name}/Cargo.toml);
in
rustPlatform.buildRustPackage {
pname = name;
name = cargoToml.package.name;
pname = cargoToml.package.name;
version = cargoToml.package.version;
src = "${inputs.self}";
cargoLock.lockFile = lockFile;
cargoLock = {
inherit lockFile;
};
buildInputs = [
glib