aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/office/espanso/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/office/espanso/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/office/espanso/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/office/espanso/default.nix b/nixpkgs/pkgs/applications/office/espanso/default.nix
new file mode 100644
index 00000000000..86a2c961194
--- /dev/null
+++ b/nixpkgs/pkgs/applications/office/espanso/default.nix
@@ -0,0 +1,55 @@
+{ stdenv
+, fetchFromGitHub
+, rustPlatform
+, pkgconfig
+, extra-cmake-modules
+, libX11
+, libXi
+, libXtst
+, libnotify
+, openssl
+, xclip
+, xdotool
+}:
+
+rustPlatform.buildRustPackage rec {
+ pname = "espanso";
+ version = "0.7.1";
+
+ src = fetchFromGitHub {
+ owner = "federico-terzi";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1yspycgmg7vwf4d86r6n24lvgn14aq73fl8sn00shxndramp46ib";
+ };
+
+ cargoSha256 = "0g0xf8j4yjayl7a5sqxm3piiif1hc7ws3i7q8vi7dk8nk609pbxr";
+
+ nativeBuildInputs = [
+ extra-cmake-modules
+ pkgconfig
+ ];
+
+ buildInputs = [
+ libX11
+ libXtst
+ libXi
+ libnotify
+ openssl
+ xdotool
+ ];
+
+ # Some tests require networking
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Cross-platform Text Expander written in Rust";
+ homepage = "https://espanso.org";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ kimat ];
+
+ longDescription = ''
+ Espanso detects when you type a keyword and replaces it while you're typing.
+ '';
+ };
+}