maintainers: add rookeur
This commit is contained in:
parent
d89fdbfc98
commit
db952cc105
2 changed files with 42 additions and 0 deletions
|
@ -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";
|
||||
|
|
33
pkgs/by-name/ol/olvid/package.nix
Normal file
33
pkgs/by-name/ol/olvid/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue