summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/in/inklingreader/package.nix
blob: 76c76bb131a5786813f2571b888410e7b90d5058 (plain)
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
40
41
42
43
{
  lib,
  stdenv,
  fetchFromGitHub,
  autoreconfHook,
  pkg-config,
  wrapGAppsHook3,
  gtk3,
  librsvg,
  libusb1,
}:

stdenv.mkDerivation {
  pname = "inklingreader";
  version = "0.8-unstable-2026-05-06";

  src = fetchFromGitHub {
    owner = "roelj";
    repo = "inklingreader";
    rev = "44026d82e494b8068ebd8be377516053487cc2c6";
    hash = "sha256-NfjLzgFxo3h3gpPeQ+un5f8n1kIxUBQLLRV2CptuxzA=";
  };

  nativeBuildInputs = [
    autoreconfHook
    pkg-config
    wrapGAppsHook3
  ];
  buildInputs = [
    gtk3
    librsvg
    libusb1
  ];

  meta = {
    homepage = "https://github.com/roelj/inklingreader";
    description = "GNU/Linux-friendly version of the Wacom Inkling SketchManager";
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ totoroot ];
    platforms = lib.platforms.linux;
    mainProgram = "inklingreader";
  };
}