1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 10:41:03 +02:00

style(nix): fmt flake.nix

This commit is contained in:
yavko 2023-02-07 22:32:21 -08:00
parent 9984b638b5
commit b2749fee92
No known key found for this signature in database
GPG key ID: F07D19A32407F857

View file

@ -49,7 +49,8 @@
rustc = rust;
};
in {
ironbar = features: rustPlatform.buildRustPackage {
ironbar = features:
rustPlatform.buildRustPackage {
pname = "ironbar";
version = self.rev or "dirty";
src = builtins.path {
@ -64,7 +65,7 @@
buildInputs = with prev; [gtk3 gdk-pixbuf gtk-layer-shell libxkbcommon openssl];
};
};
packageBuilder = genSystems(system: self.packages.${system}.ironbar);
packageBuilder = genSystems (system: self.packages.${system}.ironbar);
packages = genSystems (
system: let
pkgs = pkgsFor system;