Skip to content

Commit

Permalink
containerd: remove superfluous [ ]
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed May 22, 2021
1 parent 3a28f72 commit 9c4e08f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkgs/applications/virtualization/containerd/default.nix
Expand Up @@ -28,8 +28,7 @@ buildGoPackage rec {

buildFlags = [ "VERSION=v${version}" "REVISION=${src.rev}" ];

BUILDTAGS = [ ]
++ lib.optional (btrfs-progs == null) "no_btrfs";
BUILDTAGS = lib.optional (btrfs-progs == null) "no_btrfs";

buildPhase = ''
cd go/src/${goPackagePath}
Expand Down

2 comments on commit 9c4e08f

@jonringer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cc @SuperSandro2000 is there a reason to have pushed this to nixos repo?

@SuperSandro2000
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub being unable to create a branch in my fork when I do not edit it there.

Please sign in to comment.