{ description = "dwm for Wayland (requires dwl 0.7)"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-parts.url = "github:hercules-ci/flake-parts"; }; outputs = inputs@{ flake-parts, nixpkgs, ... }: flake-parts.lib.mkFlake { inherit inputs; } { systems = nixpkgs.lib.platforms.unix; perSystem = { config, self', inputs', pkgs, system, ... }: { packages.default = (old: pkgs.dwl.overrideAttrs { buildInputs = old.buildInputs ++ pkgs.fcft; src = ./.; }); }; }; }