mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
heisenbridge: init at unstable-2021-05-23 (#123846)
This commit is contained in:
parent
bacd5a971c
commit
9fad0cbd5b
28
pkgs/servers/heisenbridge/default.nix
Normal file
28
pkgs/servers/heisenbridge/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "heisenbridge";
|
||||
version = "unstable-2021-05-23";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hifi";
|
||||
repo = "heisenbridge";
|
||||
rev = "1f8df49b7e89aaeb2cbb5fee68bd29cf3eda079a";
|
||||
sha256 = "sha256-ta6n9hXRdIjfxsLy9jrzZkz6TS50/TYpFOb/BLrRWK4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
aiohttp
|
||||
irc
|
||||
pyyaml
|
||||
];
|
||||
|
||||
checkInputs = [ python3Packages.pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A bouncer-style Matrix-IRC bridge.";
|
||||
homepage = "https://github.com/hifi/heisenbridge";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.sumnerevans ];
|
||||
};
|
||||
}
|
@ -5582,6 +5582,8 @@ in
|
||||
|
||||
heimdall-gui = heimdall.override { enableGUI = true; };
|
||||
|
||||
heisenbridge = callPackage ../servers/heisenbridge { };
|
||||
|
||||
helio-workstation = callPackage ../applications/audio/helio-workstation { };
|
||||
|
||||
hevea = callPackage ../tools/typesetting/hevea { };
|
||||
|
Loading…
Reference in New Issue
Block a user