You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
572 B
Nix
30 lines
572 B
Nix
1 year ago
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
with pkgs;
|
||
|
let
|
||
|
version = "0.0.1";
|
||
|
deps = [];
|
||
|
nativeDeps = [
|
||
|
];
|
||
|
in
|
||
|
pkgs.buildGo117Module {
|
||
|
pname = "gitea-attachements-proxy";
|
||
|
inherit version;
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
buildInputs = [
|
||
|
] ++deps;
|
||
|
nativeBuildInputs = [
|
||
|
] ++nativeDeps;
|
||
|
|
||
|
tags = [ ];
|
||
|
|
||
|
allowGoReference = true;
|
||
|
|
||
|
vendorSha256 = "sha256-9ppXRHVSzXyEvCx+5ZOB+A//THbl/5k2wRy+jLaRUkE=";
|
||
|
|
||
|
meta = {
|
||
|
description = "A Wrapper around the gitea API to get attachments by tags";
|
||
|
homepage = "https://git.entr0py.de/garionion/gitea-attachements-proxy";
|
||
|
};
|
||
|
}
|