summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 052a6f5c49f985246d9f883e949492b6d9cbdd84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
  outputs = {
    self,
    nixpkgs,
  }: let
    inherit (builtins) replaceStrings readFile;
    readVer = file: replaceStrings ["\n"] [""] (readFile file);
    supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
    forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems (system: (forSystem system f));
    forSystem = system: f: f rec {
      inherit system;
      pkgs = nixpkgs.legacyPackages.${system};
      mkPkg = name: src: inputs:
	pkgs.stdenv.mkDerivation {
	  nativeBuildInputs = with pkgs; [
	    wrapGAppsHook
	    gobject-introspection
	    meson
	    pkg-config
	    ninja
	    vala
	    wayland
	    wayland-scanner
	    python3
	  ];
	  propagatedBuildInputs = [pkgs.glib] ++ inputs;
	  pname = name;
	  version = readVer "${src}/version";
	  src = src;
	  postUnpack = ''
	    cp --remove-destination ${./lib/gir.py} $sourceRoot/gir.py
	  '';
	  outputs = ["out" "dev"];
	};
    };
  in {

    devShells = forAllSystems({system, pkgs, ...}: import ./nix/devshell.nix {
        inherit self pkgs;
    });

    lib = forAllSystems({system, pkgs, ...}: {
      mkLuaPackage = import ./nix/lua.nix {
        inherit pkgs;
        astal = self;
      };
    });

    packages = forAllSystems({system, pkgs, mkPkg, ...}: with pkgs;{
      docs = import ./docs {inherit self pkgs;};
      default = self.packages.${system}.io;

      io = mkPkg "astal" ./lib/astal/io [];
      astal3 = mkPkg "astal" ./lib/astal/gtk3 [self.packages.${system}.io gtk3 gtk-layer-shell];
      astal4 = mkPkg "astal" ./lib/astal/gtk4 [self.packages.${system}.io gtk4 gtk4-layer-shell];
      apps = mkPkg "astal-apps" ./lib/apps [json-glib];
      auth = mkPkg "astal-auth" ./lib/auth [pam];
      battery = mkPkg "astal-battery" ./lib/battery [json-glib];
      bluetooth = mkPkg "astal-bluetooth" ./lib/bluetooth [];
      cava = mkPkg "astal-cava" ./lib/cava [(pkgs.callPackage ./nix/libcava.nix {})];
      greet = mkPkg "astal-greet" ./lib/greet [json-glib];
      hyprland = mkPkg "astal-hyprland" ./lib/hyprland [json-glib];
      mpris = mkPkg "astal-mpris" ./lib/mpris [gvfs json-glib];
      network = mkPkg "astal-network" ./lib/network [networkmanager];
      notifd = mkPkg "astal-notifd" ./lib/notifd [json-glib gdk-pixbuf];
      powerprofiles = mkPkg "astal-power-profiles" ./lib/powerprofiles [json-glib];
      river = mkPkg "astal-river" ./lib/river [json-glib];
      tray = mkPkg "astal-tray" ./lib/tray [json-glib (pkgs.callPackage ./nix/appmenu-glib.nix {})];
      wireplumber = mkPkg "astal-wireplumber" ./lib/wireplumber [wireplumber];

      gjs = pkgs.stdenvNoCC.mkDerivation {
        src = ./lang/gjs;
        name = "astal-gjs";
        nativeBuildInputs = [
          meson
          ninja
          pkg-config
          self.packages.${system}.io
          self.packages.${system}.astal3
        ];
      };
    });
  };

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  };
}