nixpkgs/pkgs/tools/text/snippetpixie/default.nix

95 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-12-11 01:01:52 +00:00
, fetchFromGitHub
, nix-update-script
2019-12-11 01:01:52 +00:00
, meson
, ninja
, vala
, pkgconfig
, wrapGAppsHook
, appstream
, desktop-file-utils
, python3
, libgee
, glib
, gtk3
, sqlite
, at-spi2-atk
, at-spi2-core
, dbus
, ibus
, json-glib
, pantheon
2020-03-02 19:54:35 +00:00
, xorg
2019-12-11 01:01:52 +00:00
}:
stdenv.mkDerivation rec {
pname = "snippetpixie";
2020-11-12 04:06:10 +00:00
version = "1.5.0";
2019-12-11 01:01:52 +00:00
src = fetchFromGitHub {
owner = "bytepixie";
repo = pname;
rev = version;
2020-11-12 04:06:10 +00:00
sha256 = "1cb76kzw34yr1r135lyd75ddm9v99m7i3lyirm353cdch8qspfmv";
2019-12-11 01:01:52 +00:00
};
nativeBuildInputs = [
meson
ninja
vala
pkgconfig
wrapGAppsHook
appstream
desktop-file-utils
python3
];
buildInputs = [
libgee
glib
gtk3
sqlite
at-spi2-atk
at-spi2-core
dbus
ibus
json-glib
2020-03-02 19:54:35 +00:00
xorg.libXtst
2019-12-11 01:01:52 +00:00
pantheon.granite
pantheon.elementary-gtk-theme
pantheon.elementary-icon-theme
];
doCheck = true;
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
meta = with lib; {
2019-12-11 01:01:52 +00:00
description = "Your little expandable text snippet helper";
longDescription = ''
Your little expandable text snippet helper.
Save your often used text snippets and then expand them whenever you type their abbreviation.
For example:- "spr`" expands to "Snippet Pixie rules!"
2020-09-03 23:52:10 +00:00
For non-accessible applications such as browsers and Electron apps, there's a shortcut (default is Ctrl+`) for opening a search window that pastes the selected snippet.
2019-12-11 01:01:52 +00:00
'';
homepage = "https://www.snippetpixie.com";
2019-12-11 01:01:52 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [
ianmjones
] ++ pantheon.maintainers;
platforms = platforms.linux;
};
}