2021-03-20 20:40:40 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021 Luke Granger-Brown <depot@lukegb.com>
|
2021-03-20 19:49:33 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
{ pkgs, ... }:
|
|
|
|
let
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
in
|
|
|
|
pkgs.buildGoModule {
|
|
|
|
pname = "fup";
|
|
|
|
version = "0.0.1";
|
|
|
|
|
|
|
|
src = ./.;
|
|
|
|
|
2021-03-21 03:29:34 +00:00
|
|
|
vendorSha256 = "sha256:0jvak2z2f1j9mavzxdqa7jpy3zhzznwyvj10ail7p68yilzbrkja";
|
2021-03-20 19:49:33 +00:00
|
|
|
|
|
|
|
meta = with pkgs.lib; {
|
|
|
|
description = "Simple file upload manager.";
|
|
|
|
homepage = "https://hg.lukegb.com";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|