mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
7f0dea39c8
I don't know if they even have a public changelog, so I can't link it here, but the version number is higher!
68 lines
1.9 KiB
Nix
68 lines
1.9 KiB
Nix
{ autoPatchelfHook
|
|
, electron
|
|
, fetchurl
|
|
, lib
|
|
, makeWrapper
|
|
, squashfsTools
|
|
, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "authy";
|
|
# curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/authy?channel=stable' | jq '.download_url,.version'
|
|
version = "2.2.2";
|
|
rev = "12";
|
|
|
|
src = fetchurl {
|
|
url = "https://api.snapcraft.io/api/v1/snaps/download/H8ZpNgIoPyvmkgxOWw5MSzsXK1wRZiHn_${rev}.snap";
|
|
sha256 = "sha256-vSbqT2s5lLEU1SSDaC+sS6qt446iSKYUgKudO5WMOu4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook makeWrapper squashfsTools ];
|
|
|
|
unpackPhase = ''
|
|
runHook preUnpack
|
|
unsquashfs "$src"
|
|
cd squashfs-root
|
|
if ! grep -q '${version}' meta/snap.yaml; then
|
|
echo "Package version differs from version found in snap metadata:"
|
|
grep 'version: ' meta/snap.yaml
|
|
echo "While the nix package specifies: ${version}."
|
|
echo "You probably chose the wrong revision or forgot to update the nix version."
|
|
exit 1
|
|
fi
|
|
runHook postUnpack
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/applications $out/share/pixmaps/apps
|
|
|
|
# Copy only what is needed
|
|
cp -r resources* $out/
|
|
cp -r locales* $out/
|
|
cp meta/gui/authy.desktop $out/share/applications/
|
|
cp meta/gui/icon.png $out/share/pixmaps/authy.png
|
|
|
|
# Replace icon name in Desktop file
|
|
sed -i 's|''${SNAP}/meta/gui/icon.png|authy|g' "$out/share/applications/authy.desktop"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${electron}/bin/electron $out/bin/${pname} \
|
|
--add-flags $out/resources/app.asar
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.authy.com";
|
|
description = "Twilio Authy two factor authentication desktop application";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ iammrinal0 ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|