nixpkgs/pkgs/desktops/lxqt/screengrab/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1,009 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 03:21:50 +01:00
, pkg-config
, qtbase
, qttools
, qtx11extras
, qtsvg
, kwindowsystem
, libqtxdg
2021-04-16 22:32:42 +02:00
, perl
, xorg
, autoPatchelfHook
, gitUpdater
}:
mkDerivation rec {
2019-02-06 00:14:54 +01:00
pname = "screengrab";
2022-11-09 14:11:12 +01:00
version = "2.5.0";
2017-11-02 03:09:14 +01:00
src = fetchFromGitHub {
owner = "lxqt";
2019-02-06 00:14:54 +01:00
repo = pname;
rev = version;
2022-11-09 14:11:12 +01:00
sha256 = "QEe1vOAeUDOlQfTh5/BvwBv9+v40NsuoMbC77+U6GCA=";
};
2019-02-06 00:14:54 +01:00
nativeBuildInputs = [
cmake
2021-01-17 03:21:50 +01:00
pkg-config
2021-04-16 22:32:42 +02:00
perl # needed by LXQtTranslateDesktop.cmake
2019-02-06 00:14:54 +01:00
autoPatchelfHook # fix libuploader.so and libextedit.so not found
];
buildInputs = [
2017-02-25 16:44:29 +01:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
libqtxdg
xorg.libpthreadstubs
xorg.libXdmcp
];
passthru.updateScript = gitUpdater { };
meta = with lib; {
2020-01-22 22:16:56 +01:00
homepage = "https://github.com/lxqt/screengrab";
description = "Crossplatform tool for fast making screenshots";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2022-04-14 15:52:15 +02:00
maintainers = teams.lxqt.members;
};
}