gitea-attachements-proxy/package.nix
Garionion 6b1b511b8c
Some checks reported errors
continuous-integration/drone/push Build was killed
record fly.io regions successful requests are from
2022-03-28 17:36:05 +02:00

31 lines
610 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
let
version = "0.0.1";
deps = [ gcc];
nativeDeps = [
];
in
pkgs.buildGo117Module {
pname = "gitea-attachements-proxy";
inherit version;
src = ./.;
buildInputs = [
] ++deps;
nativeBuildInputs = [
] ++nativeDeps;
tags = [ ];
allowGoReference = true;
#vendorSha256 = lib.fakeSha256;
vendorSha256 = "sha256-K5EBHiU03DMzD/E4yuCLq6p+G0PU62bR1BHuGtA3KhU=";
meta = {
description = "A Wrapper around the gitea API to get attachments by tags";
homepage = "https://git.entr0py.de/garionion/gitea-attachements-proxy";
};
}