1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 autoreconfHook,
6 pkg-config,
7 gtk3,
8 librsvg,
9 libusb1,
10}:
11
12stdenv.mkDerivation {
13 pname = "inklingreader";
14 version = "unstable-2017-09-07";
15
16 src = fetchFromGitHub {
17 owner = "roelj";
18 repo = "inklingreader";
19 rev = "90f9d0d7f5353657f4d25fd75635e29c10c08d2e";
20 sha256 = "sha256-852m8g61r+NQhCYz9ghSbCG0sjao2E8B9GS06NG4GyY=";
21 };
22
23 nativeBuildInputs = [
24 autoreconfHook
25 pkg-config
26 ];
27 buildInputs = [
28 gtk3
29 librsvg
30 libusb1
31 ];
32
33 meta = {
34 homepage = "https://github.com/roelj/inklingreader";
35 description = "GNU/Linux-friendly version of the Wacom Inkling SketchManager";
36 license = lib.licenses.gpl3;
37 maintainers = with lib.maintainers; [ totoroot ];
38 platforms = lib.platforms.linux;
39 mainProgram = "inklingreader";
40 };
41}