diff options
| author | allusive-dev <[email protected]> | 2023-11-15 15:13:38 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-15 15:13:38 +1100 |
| commit | f481ea09f9f69c96575662d7b67d290f380aee83 (patch) | |
| tree | 9155652619c26d1a028ddc63eb7a0c29094dd0d3 /flake.nix | |
| parent | Update README.md (diff) | |
| download | compfy-1.6.0.tar.xz compfy-1.6.0.zip | |
merge with compfy again lol1.6.0
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -13,23 +13,26 @@ flake-utils.lib.eachDefaultSystem ( system: let pkgs = nixpkgs.legacyPackages.${system}; - nativeBuildInputs = with pkgs; []; - buildInputs = with pkgs; [pcre2]; + nativeBuildInputs = with pkgs; [ go-md2man ]; + buildInputs = with pkgs; [ pcre2 ]; in { devShells.default = pkgs.mkShell {inherit nativeBuildInputs buildInputs;}; packages = rec { - default = picom-allusive; - picom-allusive = pkgs.picom.overrideAttrs (_old: { + default = compfy; + compfy = pkgs.picom.overrideAttrs (_old: { src = ./.; + name = "compfy"; buildInputs = buildInputs ++ _old.buildInputs; nativeBuildInputs = nativeBuildInputs ++ _old.nativeBuildInputs; + postInstall = ''''; + mainProgram = "compfy"; }); }; overlays = rec { - default = picom-allusive; - picom-allusive = self.packages.default; + default = compfy; + compfy = self.packages.default; }; } ); |