2019-07-27 22:05:17 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, libqtxdg, xorg, autoPatchelfHook }:
|
2016-10-14 23:48:32 +01:00
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
mkDerivation rec {
|
2019-02-05 23:14:54 +00:00
|
|
|
pname = "screengrab";
|
2019-02-26 21:32:38 +00:00
|
|
|
version = "1.101";
|
2016-10-14 23:48:32 +01:00
|
|
|
|
2017-11-02 02:09:14 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-05-22 02:24:38 +01:00
|
|
|
owner = "lxqt";
|
2019-02-05 23:14:54 +00:00
|
|
|
repo = pname;
|
2017-09-27 23:52:18 +01:00
|
|
|
rev = version;
|
2019-02-26 21:32:38 +00:00
|
|
|
sha256 = "111gnkhp77qkch7xqr7k3h8zrg4871gapyd4vvlpaj0gjhirjg6h";
|
2016-10-14 23:48:32 +01:00
|
|
|
};
|
|
|
|
|
2019-02-05 23:14:54 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
autoPatchelfHook # fix libuploader.so and libextedit.so not found
|
|
|
|
];
|
2016-10-14 23:48:32 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-02-25 15:44:29 +00:00
|
|
|
qtbase
|
|
|
|
qttools
|
|
|
|
qtx11extras
|
|
|
|
qtsvg
|
|
|
|
kwindowsystem
|
|
|
|
libqtxdg
|
2016-10-14 23:48:32 +01:00
|
|
|
xorg.libpthreadstubs
|
|
|
|
xorg.libXdmcp
|
|
|
|
];
|
|
|
|
|
2019-07-27 22:05:17 +01:00
|
|
|
meta = with lib; {
|
2016-10-14 23:48:32 +01:00
|
|
|
description = "Crossplatform tool for fast making screenshots";
|
2018-05-22 02:24:38 +01:00
|
|
|
homepage = https://github.com/lxqt/screengrab;
|
2016-10-14 23:48:32 +01:00
|
|
|
license = licenses.gpl2;
|
2019-11-02 17:49:35 +00:00
|
|
|
platforms = platforms.linux;
|
2016-10-14 23:48:32 +01:00
|
|
|
maintainers = with maintainers; [ romildo ];
|
|
|
|
};
|
|
|
|
}
|