about summary refs log tree commit diff
path: root/tools/nixery/popcount/default.nix
blob: 4b16768e4e89024c30b4803fefabbf9d73770a7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2022 The TVL Contributors
# SPDX-License-Identifier: Apache-2.0

{ buildGoPackage }:

buildGoPackage {
  name = "nixery-popcount";

  src = ./.;

  goPackagePath = "github.com/google/nixery/popcount";
  doCheck = true;
}