add fileshare

This commit is contained in:
Kopatz
2024-06-01 23:55:36 +02:00
parent cc2aa2b6c3
commit 2843e736ba
11 changed files with 105 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
{ buildGoModule, stdenv, pkgs, lib, ... }:
buildGoModule rec {
pname = "kop-fileshare";
version = "0.0.1";
src = fetchGit {
url = "git@github.com:kropatz/kop-fileshare.git";
ref = "master";
rev = "3556ccab052233c0d5d70baa631ba8b56ee8ebdb";
};
vendorHash = "sha256-OQ6rNgOQHrrhE7DT+ulwpWJCDJ4DeJiDzriAu3mfS7I=";
meta = {
description = "Simple drag and drop file uploading/sharing website";
homepage = "https://github.com/Kropatz/kop-fileshare";
license = lib.licenses.gpl3;
};
}