2024-12-02 19:37:27 +01:00
|
|
|
# Copyright 2022, 2024 The TVL Contributors
|
2022-04-20 16:41:20 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2019-10-31 17:54:31 +00:00
|
|
|
|
2024-12-02 19:37:27 +01:00
|
|
|
{ buildGoModule }:
|
2019-10-31 17:54:31 +00:00
|
|
|
|
2024-12-02 19:37:27 +01:00
|
|
|
buildGoModule {
|
2019-10-31 17:54:31 +00:00
|
|
|
name = "nixery-popcount";
|
|
|
|
|
2020-02-25 10:40:25 -08:00
|
|
|
src = ./.;
|
|
|
|
|
2024-12-02 19:37:27 +01:00
|
|
|
vendorHash = null;
|
|
|
|
|
|
|
|
# https://nixos.org/manual/nixpkgs/stable/#buildGoPackage-migration
|
|
|
|
postPatch = ''
|
|
|
|
go mod init github.com/google/nixery/popcount
|
|
|
|
'';
|
|
|
|
|
2020-02-25 10:40:25 -08:00
|
|
|
doCheck = true;
|
2019-10-31 17:54:31 +00:00
|
|
|
}
|