mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
27 lines
743 B
Nix
27 lines
743 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 = "Simple file server for handling XMPP http_upload requests";
|
|
mainProgram = "prosody-filer";
|
|
};
|
|
}
|