aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-11-15 15:13:38 +1100
committerallusive-dev <[email protected]>2023-11-15 15:13:38 +1100
commitf481ea09f9f69c96575662d7b67d290f380aee83 (patch)
tree9155652619c26d1a028ddc63eb7a0c29094dd0d3 /flake.nix
parentUpdate README.md (diff)
downloadcompfy-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.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 8fc4f26..f76a598 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};
}
);