forked from mirrors/nixpkgs
mautrix-facebook: 0.4.0 -> 2022-05-06-5e2c4e7f
The current version is broken on the version of mautrix-python in nixpkgs and there are a couple fixes scattered in unreleased commits. Simply update to HEAD to get it working again.
This commit is contained in:
parent
c777cdf5c5
commit
fa43ff6fe4
|
@ -1,5 +1,6 @@
|
||||||
{ enableSystemd ? stdenv.isLinux
|
{ enableSystemd ? stdenv.isLinux
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, fetchpatch
|
||||||
, lib
|
, lib
|
||||||
, python3
|
, python3
|
||||||
, stdenv
|
, stdenv
|
||||||
|
@ -7,13 +8,13 @@
|
||||||
|
|
||||||
python3.pkgs.buildPythonPackage rec {
|
python3.pkgs.buildPythonPackage rec {
|
||||||
pname = "mautrix-facebook";
|
pname = "mautrix-facebook";
|
||||||
version = "0.4.0";
|
version = "unstable-2022-05-06";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mautrix";
|
owner = "mautrix";
|
||||||
repo = "facebook";
|
repo = "facebook";
|
||||||
rev = "v${version}";
|
rev = "5e2c4e7f5a38e3c5d984d690c0ebee9b6bb4768c";
|
||||||
hash = "sha256-Yc8W8A11dnXrJdLtu/rJHTVlu2pEawXn5xuT8Ez+h9U=";
|
hash = "sha256-ukFtVRrmaJVVwgp5siwEwbfq6Yq5rmu3XJA5H2n/eJU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue