Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
829 B
Nix
42 lines
829 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
gtk3,
|
|
librsvg,
|
|
libusb1,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
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 = "GNU/Linux-friendly version of the Wacom Inkling SketchManager";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ totoroot ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "inklingreader";
|
|
};
|
|
}
|