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

35 lines
823 B
Nix
Raw Normal View History

2017-02-25 15:44:29 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qtbase, qttools, qtx11extras, qtsvg, kwindowsystem, libqtxdg, xorg }:
stdenv.mkDerivation rec {
name = "screengrab-${version}";
2018-05-22 13:54:43 +00:00
version = "1.98";
2017-11-02 02:09:14 +00:00
src = fetchFromGitHub {
owner = "lxqt";
repo = "screengrab";
rev = version;
2018-05-22 13:54:43 +00:00
sha256 = "1y3r29220z6y457cajpad3pjnr883smbvh0kai8hc5hh4k4kxs6v";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
2017-02-25 15:44:29 +00:00
qtbase
qttools
qtx11extras
qtsvg
kwindowsystem
libqtxdg
xorg.libpthreadstubs
xorg.libXdmcp
];
meta = with stdenv.lib; {
description = "Crossplatform tool for fast making screenshots";
homepage = https://github.com/lxqt/screengrab;
license = licenses.gpl2;
platforms = with platforms; unix;
maintainers = with maintainers; [ romildo ];
};
}