Add flake package export

This commit is contained in:
Val Packett 2026-03-06 04:24:42 -03:00
parent 9685398371
commit 35d4419c04

View file

@ -25,8 +25,19 @@
rust-analyzer
clippy
];
env = {};
env = { };
};
packages.wl-backdrop =
let
cargoToml = fromTOML (builtins.readFile ./Cargo.toml);
in
pkgs.rustPlatform.buildRustPackage {
inherit (cargoToml.package) name version;
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
env = { };
};
};
flake = {