diff options
author | Aylur <[email protected]> | 2024-10-22 18:43:17 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-23 01:31:01 +0200 |
commit | 9a6c776f8fb145a602bcfe9046955d0d2f268416 (patch) | |
tree | e716c94d76cd69d84a983a0b45bb4b8e3df6f85a /flake.nix | |
parent | e220873b5a9c124b742b221c209334045e2b783c (diff) |
docs: notifd doc comments
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,6 +1,4 @@ { - inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - outputs = { self, nixpkgs, @@ -22,11 +20,15 @@ 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 { @@ -59,6 +61,7 @@ river = mkPkg "astal-river" ./lib/river [json-glib]; tray = mkPkg "astal-tray" ./lib/tray [gtk3 gdk-pixbuf libdbusmenu-gtk3 json-glib]; wireplumber = mkPkg "astal-wireplumber" ./lib/wireplumber [wireplumber]; + # polkit = mkPkg "astal-polkit" ./lib/polkit [polkit]; gjs = pkgs.stdenvNoCC.mkDerivation { src = ./lang/gjs; @@ -73,4 +76,8 @@ }; }; }; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + }; } |