15 lines
436 B
Nix
15 lines
436 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
depot.third_party.buildGo.external {
|
||
|
path = "github.com/jackc/chunkreader/v2";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "jackc";
|
||
|
repo = "chunkreader";
|
||
|
rev = "3c4a99247c6656284dd2be8d74438ca9bbb4f342";
|
||
|
sha256 = "0fj585hp3s4cjfzncr5gmim96p0b956pqdf4nm7yan1ipfch9l1c";
|
||
|
};
|
||
|
}
|