application-launcher/nix/package.nix
2025-06-23 16:15:46 +02:00

22 lines
339 B
Nix

{
rustPlatform,
gtk4,
gtk4-layer-shell,
pkg-config,
}:
rustPlatform.buildRustPackage rec {
pname = "application-launcher";
version = "0.1.0";
src = ./..;
nativeBuildInputs = [
pkg-config
];
buildInputs = [
gtk4
gtk4-layer-shell
];
cargoHash = "sha256-KgixCJMtDoIe2JIVrkk5HCnaca2sZSuOREOXC1othXk=";
}