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

31 lines
1 KiB
Nix
Raw Normal View History

2019-04-23 16:13:58 +00:00
{ appimageTools, fetchurl, lib, gsettings-desktop-schemas, gtk3 }:
let
pname = "notable";
2020-03-06 14:36:12 +00:00
version = "1.8.4";
2019-04-23 16:13:58 +00:00
in
appimageTools.wrapType2 rec {
name = "${pname}-${version}";
src = fetchurl {
2019-07-09 07:08:11 +00:00
url = "https://github.com/notable/notable/releases/download/v${version}/Notable-${version}.AppImage";
2020-03-06 14:36:12 +00:00
sha256 = "0rvz8zwsi62kiq89pv8n2wh9h5yb030kvdr1vf65xwqkhqcrzrby";
2019-04-23 16:13:58 +00:00
};
profile = ''
export LC_ALL=C.UTF-8
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
'';
multiPkgs = null; # no 32bit needed
extraPkgs = p: (appimageTools.defaultFhsEnvArgs.multiPkgs p) ++ [ p.at-spi2-atk p.at-spi2-core ];
2019-04-23 16:13:58 +00:00
extraInstallCommands = "mv $out/bin/{${name},${pname}}";
meta = with lib; {
description = "The markdown-based note-taking app that doesn't suck";
2020-03-06 14:36:12 +00:00
homepage = "https://github.com/notable/notable";
2019-04-23 16:13:58 +00:00
license = licenses.agpl3;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ dtzWill ];
};
}