about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/sw/swipe-guess/package.nix
blob: 2f6d5f8fe9a5096ba04325cc5dafccbd4520d0c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib
, stdenv
, fetchFromSourcehut
}:

stdenv.mkDerivation rec {
  pname = "swipe-guess";
  version = "0.2.1";

  src = fetchFromSourcehut {
    owner = "~earboxer";
    repo = "swipeGuess";
    rev = "v${version}";
    hash = "sha256-8bPsnqjLeeZ7btTre9j1T93VWY9+FdBdJdxyvBVt34s=";
  };

  dontConfigure = true;

  buildPhase = ''
    runHook preBuild

    ${lib.getExe stdenv.cc} swipeGuess.c -o swipeGuess

    runHook postBuild
  '';

  postInstall = ''
    install -Dm555 swipeGuess -t $out/bin
  '';

  meta = {
    description = "Completion plugin for touchscreen-keyboards on mobile devices";
    homepage = "https://git.sr.ht/~earboxer/swipeGuess/";
    license = lib.licenses.agpl3Only;
    mainProgram = "swipeGuess";
    maintainers = with lib.maintainers; [ eclairevoyant ];
    platforms = lib.platforms.all;
  };
}