From 23cdbc8088b5c308a068b432a6b03213ede68f07 Mon Sep 17 00:00:00 2001 From: Aylur Date: Sat, 1 Mar 2025 20:59:09 +0100 Subject: add gtk4 examples --- examples/gtk4/simple-bar/vala/flake.nix | 52 +++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 examples/gtk4/simple-bar/vala/flake.nix (limited to 'examples/gtk4/simple-bar/vala/flake.nix') diff --git a/examples/gtk4/simple-bar/vala/flake.nix b/examples/gtk4/simple-bar/vala/flake.nix new file mode 100644 index 0000000..52db45b --- /dev/null +++ b/examples/gtk4/simple-bar/vala/flake.nix @@ -0,0 +1,52 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + astal = { + url = "github:aylur/astal"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + + outputs = { + self, + nixpkgs, + astal, + }: let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + + nativeBuildInputs = with pkgs; [ + meson + ninja + pkg-config + gobject-introspection + wrapGAppsHook4 + blueprint-compiler + dart-sass + vala + ]; + + astalPackages = with astal.packages.${system}; [ + io + astal4 + battery + wireplumber + network + mpris + powerprofiles + tray + bluetooth + ]; + in { + packages.${system}.default = pkgs.stdenv.mkDerivation { + name = "simple-bar"; + src = ./.; + inherit nativeBuildInputs; + buildInputs = astalPackages; + }; + + devShells.${system}.default = pkgs.mkShell { + packages = nativeBuildInputs ++ astalPackages; + }; + }; +} -- cgit v1.2.3