nixpkgs/pkgs/applications/office/espanso/default.nix

64 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
2020-05-01 15:38:22 +00:00
, fetchFromGitHub
, rustPlatform
, pkg-config
2020-05-01 15:38:22 +00:00
, extra-cmake-modules
, libX11
, libXi
, libXtst
, libnotify
, openssl
, xclip
, xdotool
, makeWrapper
2020-05-01 15:38:22 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "espanso";
2020-12-04 10:23:24 +00:00
version = "0.7.3";
2020-05-01 15:38:22 +00:00
src = fetchFromGitHub {
owner = "federico-terzi";
repo = pname;
rev = "v${version}";
2020-12-04 10:23:24 +00:00
sha256 = "1q47r43midkq9574gl8gdv3ylvrnbhdc39rrw4y4yk6jbdf5wwkm";
2020-05-01 15:38:22 +00:00
};
cargoSha256 = "0ba5skn5s6qh0blf6bvivzvqc2l8v488l9n3x98pmf6nygrikfdb";
2020-05-01 15:38:22 +00:00
nativeBuildInputs = [
extra-cmake-modules
pkg-config
makeWrapper
2020-05-01 15:38:22 +00:00
];
buildInputs = [
libX11
libXtst
libXi
libnotify
xclip
2020-05-01 15:38:22 +00:00
openssl
xdotool
];
# Some tests require networking
doCheck = false;
postInstall = ''
wrapProgram $out/bin/espanso \
--prefix PATH : ${lib.makeBinPath [ libnotify xclip ]}
'';
meta = with lib; {
2020-05-01 15:38:22 +00:00
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.
'';
};
}