Skip to content

Commit

Permalink
Update nix flake
Browse files Browse the repository at this point in the history
Signed-off-by: Yuxuan Shui <[email protected]>
  • Loading branch information
yshui committed Jan 22, 2024
1 parent d87dd41 commit 702e30d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
23 changes: 12 additions & 11 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,16 @@
overlays = [ overlay ];
in rec {
inherit overlay overlays;
defaultPackage = pkgs.picom;
defaultPackage = pkgs.picom.overrideAttrs {
version = "11";
src = ./.;
};
devShell = defaultPackage.overrideAttrs {
buildInputs = defaultPackage.buildInputs ++ [
pkgs.clang-tools
pkgs.clang-tools_17
pkgs.llvmPackages_17.clang-unwrapped.python
];
hardeningDisable = [ "fortify" ];
};
});
}

0 comments on commit 702e30d

Please sign in to comment.