mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
745 B
Nix
27 lines
745 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "prosody-filer";
|
|
version = "unstable-2021-05-24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ThomasLeister";
|
|
repo = "prosody-filer";
|
|
rev = "c65edd199b47dc505366c85b3702230fda797cd6";
|
|
hash = "sha256-HrCJjsa3cYK1g7ylkDiCikgxJzbuGg1/5Zz4R12520A=";
|
|
};
|
|
|
|
vendorHash = "sha256-bbkCxS0UU8PIg/Xjo2X1Mia3WHjtBxYGmwj1c/ScVxc=";
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/ThomasLeister/prosody-filer";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
description = "A simple file server for handling XMPP http_upload requests";
|
|
mainProgram = "prosody-filer";
|
|
};
|
|
}
|