mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
prosody-filer: init at unstable-2021-05-24
Using unstable version because the release happened more than a year ago, and since then several important fixes have been introduced, including security ones.
This commit is contained in:
parent
f3b193a5df
commit
b0dacda1a2
25
pkgs/servers/xmpp/prosody-filer/default.nix
Normal file
25
pkgs/servers/xmpp/prosody-filer/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "prosody-filer";
|
||||
version = "unstable-2021-05-24";
|
||||
|
||||
vendorSha256 = "05spkks77x88kc31c1zdg1cbf9ijymjs7qzmhg4c6lql5p2h5fbd";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ThomasLeister";
|
||||
repo = "prosody-filer";
|
||||
rev = "c65edd199b47dc505366c85b3702230fda797cd6";
|
||||
sha256 = "0h6vp5flgy4wwmzhs6pf6qkk2j4ah8w919dwhfsq4wdpqs78kc0y";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
@ -20931,6 +20931,8 @@ with pkgs;
|
||||
withExtraLibs = [];
|
||||
};
|
||||
|
||||
prosody-filer = callPackage ../servers/xmpp/prosody-filer { };
|
||||
|
||||
biboumi = callPackage ../servers/xmpp/biboumi { };
|
||||
|
||||
elasticmq-server-bin = callPackage ../servers/elasticmq-server-bin {
|
||||
|
Loading…
Reference in New Issue
Block a user