Skip to content

Commit

Permalink
nixos-firewall-tools: don't use filesets (#369459)
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 authored Dec 30, 2024
2 parents cd0883f + f665268 commit 98f9d01
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pkgs/by-name/ni/nixos-firewall-tool/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,10 @@
shellcheck-minimal,
}:

stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation {
name = "nixos-firewall-tool";

src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.fileFilter (file: !file.hasExt "nix") ./.;
};
src = builtins.filterSource (name: _: !(lib.hasSuffix ".nix" name)) ./.;

strictDeps = true;
buildInputs = [ bash ];
Expand Down

0 comments on commit 98f9d01

Please sign in to comment.