This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {}: | |
| with builtins; | |
| rec { | |
| toZConfigValue = value: | |
| if (isString value) then value else | |
| if (isInt value) then toString value else | |
| if (isBool value) && value then "on" else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from robot.libraries.BuiltIn import BuiltIn | |
| import cv2 | |
| import shutil | |
| import tempfile | |
| class TemporaryDirectory(object): | |
| def __enter__(self): | |
| self.name = tempfile.mkdtemp() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {} | |
| , pythonPackages ? pkgs.python36Packages | |
| }: | |
| with pkgs; | |
| let self = rec { | |
| # patches |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'plone-logged-in'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { stdenv, lib, fetchurl, unzip, bc, kernalPackages }: | |
| with lib; | |
| let modDestDir = "$out/lib/modules/${kernalPackages.modDirVersion}/kernel/drivers/net/wireless/realtek/rtlwifi"; | |
| in stdenv.mkDerivation rec { | |
| pname = "tlwn277n"; | |
| version = "3.180510"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| from jyu.flowextensions import _ | |
| from plone.api.exc import UserNotFoundError | |
| from plone.portlet.static.static import AddForm | |
| from plone.portlet.static.static import Assignment | |
| from plone.portlet.static.static import EditForm | |
| from plone.portlet.static.static import IStaticPortlet | |
| from plone.portlet.static.static import Renderer | |
| from Products.CMFCore.interfaces import IContentish | |
| from venusianconfiguration import configure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /.cache/ | |
| /.netrc | |
| /netrc | |
| /result |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { config, lib, pkgs, ... }: | |
| let | |
| libCrypto = with pkgs; stdenv.mkDerivation rec { | |
| name = "${pname}-${version}"; | |
| pname = "minecraft-bedrock-server-libcrypto"; | |
| version = "1.16-201.02"; | |
| src = fetchurl { | |
| url = "https://minecraft.azureedge.net/bin-linux/bedrock-server-1.16.201.02.zip"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Generated by pip2nix 0.8.0.dev1 | |
| # See https://github.com/nix-community/pip2nix | |
| { pkgs, fetchurl, fetchgit, fetchhg }: | |
| self: super: { | |
| "Babel" = super.buildPythonPackage rec { | |
| pname = "Babel"; | |
| version = "2.9.0"; | |
| src = fetchurl { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/setup.py b/setup.py | |
| index a15336d..307fb56 100644 | |
| --- a/setup.py | |
| +++ b/setup.py | |
| @@ -60,6 +60,9 @@ setuptools.setup( | |
| "Programming Language :: Python :: 3.7", | |
| "Programming Language :: Python :: 3.8", | |
| ], | |
| + entry_points={"console_scripts": [ | |
| + "mautrix-hangouts = mautrix_hangouts.__main__:main" |