mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
41 lines
823 B
Nix
41 lines
823 B
Nix
{ 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 = "GNU/Linux-friendly version of the Wacom Inkling SketchManager";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [ totoroot ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "inklingreader";
|
|
};
|
|
}
|