summary refs log tree commit diff
path: root/pkgs/tools/misc/inklingreader/default.nix
blob: 8710da482a6557892914b728c57912b75a431821 (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
, fetchFromGitHub
, autoreconfHook
, pkg-config
, gtk3
, librsvg
, libusb1
}:

stdenv.mkDerivation rec {
  pname = "inklingreader";
  version = "unstable-2017-09-07";

  src = fetchFromGitHub {
    owner = "roelj";
    repo = "inklingreader";
    rev = "90f9d0d7f5353657f4d25fd75635e29c10c08d2e";
    sha256 = "sha256-852m8g61r+NQhCYz9ghSbCG0sjao2E8B9GS06NG4GyY=";
  };

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

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