about summary refs log tree commit diff
path: root/tools/nixery/popcount/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tools/nixery/popcount/default.nix')
-rw-r--r--tools/nixery/popcount/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/nixery/popcount/default.nix b/tools/nixery/popcount/default.nix
new file mode 100644
index 0000000000..4b16768e4e
--- /dev/null
+++ b/tools/nixery/popcount/default.nix
@@ -0,0 +1,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;
+}