571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
98 lines
2.8 KiB
Nix
98 lines
2.8 KiB
Nix
{ lib, stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper, shortenPerlShebang, openssl
|
|
, nixosTests
|
|
}:
|
|
|
|
perlPackages.buildPerlPackage rec {
|
|
pname = "convos";
|
|
version = "8.05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "convos-chat";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dBvXo8y4OMKcb0imgnnzoklnPN3YePHDvy5rIBOkTfs=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ shortenPerlShebang ];
|
|
|
|
buildInputs = with perlPackages; [
|
|
CryptPassphrase CryptPassphraseArgon2 CryptPassphraseBcrypt
|
|
FileHomeDir FileReadBackwards HTTPAcceptLanguage SyntaxKeywordTry FutureAsyncAwait
|
|
IOSocketSSL IRCUtils JSONValidator LinkEmbedder ModuleInstall
|
|
Mojolicious MojoliciousPluginOpenAPI MojoliciousPluginSyslog ParseIRC
|
|
TextMarkdownHoedown TimePiece UnicodeUTF8 CpanelJSONXS EV YAMLLibYAML
|
|
];
|
|
|
|
propagatedBuildInputs = [ openssl ];
|
|
|
|
nativeCheckInputs = with perlPackages; [ TestDeep ];
|
|
|
|
postPatch = ''
|
|
patchShebangs script/convos
|
|
'';
|
|
|
|
preCheck = ''
|
|
# Remove unstable test (PR #176640)
|
|
#
|
|
rm t/plugin-auth-header.t
|
|
|
|
# Remove online test
|
|
#
|
|
rm t/web-pwa.t
|
|
|
|
# A test fails since gethostbyaddr(127.0.0.1) fails to resolve to localhost in
|
|
# the sandbox, we replace the this out from a substitution expression
|
|
#
|
|
substituteInPlace t/web-register-open-to-public.t \
|
|
--replace '!127.0.0.1!' '!localhost!'
|
|
|
|
# Another online test fails, so remove this.
|
|
rm t/irc-reconnect.t
|
|
|
|
# A webirc test fails to resolve "localhost" likely due to sandboxing, we
|
|
# remove this test.
|
|
#
|
|
rm t/irc-webirc.t
|
|
|
|
# A web-user test fails on Darwin, we remove it.
|
|
#
|
|
rm t/web-user.t
|
|
|
|
# Another web test fails, so we also remove this.
|
|
rm t/web-login.t
|
|
|
|
# Module::Install is a runtime dependency not covered by the tests, so we add
|
|
# a test for it.
|
|
#
|
|
echo "use Test::More tests => 1;require_ok('Module::Install')" \
|
|
> t/00_nixpkgs_module_install.t
|
|
'';
|
|
|
|
# Convos expects to find assets in both auto/share/dist/Convos, and $MOJO_HOME
|
|
# which is set to $out
|
|
#
|
|
postInstall = ''
|
|
AUTO_SHARE_PATH=$out/${perl.libPrefix}/auto/share/dist/Convos
|
|
mkdir -p $AUTO_SHARE_PATH
|
|
cp -vR public assets $AUTO_SHARE_PATH/
|
|
ln -s $AUTO_SHARE_PATH/public/assets $out/assets
|
|
cp -vR templates $out/templates
|
|
cp Makefile.PL $out/Makefile.PL
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
shortenPerlShebang $out/bin/convos
|
|
'' + ''
|
|
wrapProgram $out/bin/convos --set MOJO_HOME $out
|
|
'';
|
|
|
|
passthru.tests = nixosTests.convos;
|
|
|
|
meta = {
|
|
homepage = "https://convos.chat";
|
|
description = "Convos is the simplest way to use IRC in your browser";
|
|
mainProgram = "convos";
|
|
license = lib.licenses.artistic2;
|
|
maintainers = with lib.maintainers; [ sgo ];
|
|
};
|
|
}
|