mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
51 lines
1.7 KiB
Nix
51 lines
1.7 KiB
Nix
{ lib, stdenv, appimageTools, desktop-file-utils, fetchurl }:
|
|
|
|
let
|
|
pname = "p3x-onenote";
|
|
version = "2023.4.117";
|
|
|
|
plat = {
|
|
aarch64-linux = "-arm64";
|
|
armv7l-linux = "-armv7l";
|
|
x86_64-linux = "";
|
|
}.${stdenv.hostPlatform.system};
|
|
|
|
sha256 = {
|
|
aarch64-linux = "sha256-HFuxmMo0m4UOxEQVd32LGvbFsOS8jwCCCS6K/YJIIBE=";
|
|
armv7l-linux = "sha256-JMgYvqkaRw5sfjbKybAkk28KT12+c19dMir2DUN7Ub0=";
|
|
x86_64-linux = "sha256-hr/mPOrliP8Dej3DVE2+wYkb1J789WCkkY3xe9EcM44=";
|
|
}.${stdenv.hostPlatform.system};
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/patrikx3/onenote/releases/download/v${version}/P3X-OneNote-${version}${plat}.AppImage";
|
|
inherit sha256;
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in
|
|
appimageTools.wrapType2 rec {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
mkdir -p $out/share/pixmaps $out/share/licenses/p3x-onenote
|
|
cp ${appimageContents}/p3x-onenote.png $out/share/pixmaps/
|
|
cp ${appimageContents}/p3x-onenote.desktop $out
|
|
cp ${appimageContents}/LICENSE.electron.txt $out/share/licenses/p3x-onenote/LICENSE
|
|
|
|
${desktop-file-utils}/bin/desktop-file-install --dir $out/share/applications \
|
|
--set-key Exec --set-value $out/bin/p3x-onenote \
|
|
--set-key Comment --set-value "P3X OneNote Linux" \
|
|
--delete-original $out/p3x-onenote.desktop
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/patrikx3/onenote";
|
|
description = "Linux Electron Onenote - A Linux compatible version of OneNote";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tiagolobocastro ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "armv7l-linux" ];
|
|
mainProgram = "p3x-onenote";
|
|
};
|
|
}
|