24 lines
494 B
Nix
24 lines
494 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
let
|
||
|
inherit (pkgs) lib;
|
||
|
in
|
||
|
pkgs.buildGoModule {
|
||
|
pname = "fup";
|
||
|
version = "0.0.1";
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
vendorSha256 = "sha256:1sikkwph5l53mzplpfbcx6q2hpdkk22i33rv99z2chaadxaaqmxf";
|
||
|
|
||
|
meta = with pkgs.lib; {
|
||
|
description = "Simple file upload manager.";
|
||
|
homepage = "https://hg.lukegb.com";
|
||
|
license = licenses.asl20;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|