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