16 lines
426 B
Nix
16 lines
426 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/oklog/run";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "oklog";
|
|
repo = "run";
|
|
rev = "v1.1.0";
|
|
hash = "sha256:0r55p3kgdkgw55i33lqvvvl60mjp92mhd1170m980sw98z9150jk";
|
|
};
|
|
|
|
deps = with depot.third_party; [];
|
|
}
|