nixpkgs/pkgs/applications/misc/notable/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.3 KiB
Nix
Raw Normal View History

2023-03-08 13:54:08 +00:00
{ appimageTools, makeWrapper, fetchurl, lib }:
2019-04-23 16:13:58 +00:00
let
pname = "notable";
2020-03-06 14:36:12 +00:00
version = "1.8.4";
sha256 = "0rvz8zwsi62kiq89pv8n2wh9h5yb030kvdr1vf65xwqkhqcrzrby";
2019-04-23 16:13:58 +00:00
src = fetchurl {
2019-07-09 07:08:11 +00:00
url = "https://github.com/notable/notable/releases/download/v${version}/Notable-${version}.AppImage";
inherit sha256;
};
appimageContents = appimageTools.extract {
inherit pname version src;
2019-04-23 16:13:58 +00:00
};
in
appimageTools.wrapType2 rec {
2023-03-08 13:54:08 +00:00
inherit pname version src;
2019-04-23 16:13:58 +00:00
profile = ''
export LC_ALL=C.UTF-8
'';
extraPkgs = pkgs: [ pkgs.at-spi2-atk pkgs.at-spi2-core ];
extraInstallCommands = ''
install -m 444 -D ${appimageContents}/notable.desktop $out/share/applications/notable.desktop
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/1024x1024/apps/notable.png \
$out/share/icons/hicolor/1024x1024/apps/notable.png
substituteInPlace $out/share/applications/notable.desktop \
--replace 'Exec=AppRun' 'Exec=${pname}'
2023-03-08 13:54:08 +00:00
source "${makeWrapper}/nix-support/setup-hook"
wrapProgram "$out/bin/${pname}" \
--add-flags "--disable-seccomp-filter-sandbox"
'';
2019-04-23 16:13:58 +00:00
meta = with lib; {
description = "Markdown-based note-taking app that doesn't suck";
2020-03-06 14:36:12 +00:00
homepage = "https://github.com/notable/notable";
license = licenses.unfree;
2019-04-23 16:13:58 +00:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ dtzWill ];
};
}