1
0
Fork 0
mirror of https://github.com/Zedfrigg/ironbar.git synced 2025-07-01 18:51:04 +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; rustc = rust;
}; };
in { in {
ironbar = features: rustPlatform.buildRustPackage { ironbar = features:
rustPlatform.buildRustPackage {
pname = "ironbar"; pname = "ironbar";
version = self.rev or "dirty"; version = self.rev or "dirty";
src = builtins.path { src = builtins.path {
@ -64,7 +65,7 @@
buildInputs = with prev; [gtk3 gdk-pixbuf gtk-layer-shell libxkbcommon openssl]; 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 ( packages = genSystems (
system: let system: let
pkgs = pkgsFor system; pkgs = pkgsFor system;