14 lines
428 B
Nix
14 lines
428 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/jlaffaye/ftp";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "jlaffaye";
|
|
repo = "ftp";
|
|
rev = "11820403398b118877718a169d6368edc6e3ef9a";
|
|
hash = "sha256:18v142q292wp5y8flnq15iyfb33801xz1sg4c9pn2aibi546j011";
|
|
};
|
|
}
|