maintainers: add rookeur

This commit is contained in:
Adrien Langou 2024-03-05 00:48:38 +01:00
parent d89fdbfc98
commit db952cc105
No known key found for this signature in database
GPG key ID: 00A934E4E997C931
2 changed files with 42 additions and 0 deletions

View file

@ -16612,6 +16612,15 @@
githubId = 1312525;
name = "Rongcui Dong";
};
rookeur = {
email = "adrien.langou@hotmail.com";
github = "Rookeur";
githubId = 57438432;
name = "Adrien Langou";
keys = [{
fingerprint = "3B8F FC41 0094 2CB4 5A2A 7DF2 5A44 DA8F 9071 91B0";
}];
};
roosemberth = {
email = "roosembert.palacios+nixpkgs@posteo.ch";
matrix = "@roosemberth:orbstheorem.ch";

View file

@ -0,0 +1,33 @@
{ stdenv, lib, fetchurl, zlib, autoPatchelfHook }:
stdenv.mkDerivation rec {
pname = "olvid";
version = "1.5.0";
src = fetchurl {
url = "https://static.olvid.io/linux/${pname}-${version}.tar.gz";
hash = "sha256-4CkijAlenhht8tyk3nBULaBPE0GBf6DVII699/RmmWI=";
};
nativeBuildInputs = [
autoPatchelfHook
];
buildInputs = [
zlib
];
# sourceRoot = ".";
installPhase = ''
runHook preInstall
tar xzf olvid-1.5.0.tar.gz -C $out
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.olvid.io";
description = "Secure french messanger";
platforms = platforms.linux;
};
}