aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallusive-dev <[email protected]>2023-11-15 17:22:54 +1100
committerallusive-dev <[email protected]>2023-11-15 17:22:54 +1100
commit2f31d4e6f2044561af6113211e3b3c26211f38c3 (patch)
tree3c31b08ba344c09f64bbe4e9131e886cefe95d02
parentUpdate README.md (diff)
downloadcompfy-2f31d4e6f2044561af6113211e3b3c26211f38c3.tar.xz
compfy-2f31d4e6f2044561af6113211e3b3c26211f38c3.zip
remove uneeded build dependency
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index f76a598..0e97115 100644
--- a/flake.nix
+++ b/flake.nix
@@ -13,7 +13,7 @@
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = nixpkgs.legacyPackages.${system};
- nativeBuildInputs = with pkgs; [ go-md2man ];
+ nativeBuildInputs = with pkgs; [];
buildInputs = with pkgs; [ pcre2 ];
in {
devShells.default = pkgs.mkShell {inherit nativeBuildInputs buildInputs;};