mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
Merge pull request #40795 from emmanuelrosa/lurch
purple-lurch: init at 0.6.7
This commit is contained in:
commit
0485adef78
@ -1236,6 +1236,11 @@
|
||||
github = "ElvishJerricco";
|
||||
name = "Will Fancher";
|
||||
};
|
||||
emmanuelrosa = {
|
||||
email = "emmanuel_rosa@aol.com";
|
||||
github = "emmanuelrosa";
|
||||
name = "Emmanuel Rosa";
|
||||
};
|
||||
endgame = {
|
||||
email = "jack@jackkelly.name";
|
||||
github = "endgame";
|
||||
|
@ -0,0 +1,31 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pidgin, minixml, libxml2, sqlite, libgcrypt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "purple-lurch-${version}";
|
||||
version = "0.6.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "gkdr";
|
||||
repo = "lurch";
|
||||
rev = "v${version}";
|
||||
sha256 = "029jjqinsfhpv0zgji3sv1cyk54fn9qp176fwy97d1clf0vflxrz";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ pidgin minixml libxml2 sqlite libgcrypt ];
|
||||
|
||||
dontUseCmakeConfigure = true;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 -t $out/lib/purple-2 build/lurch.so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/gkdr/lurch;
|
||||
description = "XEP-0384: OMEMO Encryption for libpurple";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ emmanuelrosa ];
|
||||
};
|
||||
}
|
@ -1451,7 +1451,7 @@ with pkgs;
|
||||
mcrypt = callPackage ../tools/misc/mcrypt { };
|
||||
|
||||
mongodb-compass = callPackage ../tools/misc/mongodb-compass { };
|
||||
|
||||
|
||||
mongodb-tools = callPackage ../tools/misc/mongodb-tools { };
|
||||
|
||||
mozlz4a = callPackage ../tools/compression/mozlz4a {
|
||||
@ -1467,7 +1467,7 @@ with pkgs;
|
||||
};
|
||||
|
||||
antibody = callPackage ../shells/zsh/antibody { };
|
||||
|
||||
|
||||
antigen = callPackage ../shells/zsh/antigen { };
|
||||
|
||||
apparix = callPackage ../tools/misc/apparix { };
|
||||
@ -17446,6 +17446,8 @@ with pkgs;
|
||||
|
||||
purple-hangouts = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-hangouts { };
|
||||
|
||||
purple-lurch = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-lurch { };
|
||||
|
||||
purple-matrix = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-matrix { };
|
||||
|
||||
purple-plugin-pack = callPackage ../applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack { };
|
||||
|
Loading…
Reference in New Issue
Block a user