38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig
|
|
, zlib, libpng, libjpeg, libGLU, libGL, glm
|
|
, libX11, libXext, libXfixes, libXrandr, libXcomposite, slop, icu
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "maim";
|
|
version = "5.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "naelstrof";
|
|
repo = "maim";
|
|
rev = "v${version}";
|
|
sha256 = "181mjjrjb9fs1ficcv9miqbk94v95j1yli7fjp2dj514g7nj9l3x";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs =
|
|
[ zlib libpng libjpeg libGLU libGL glm
|
|
libX11 libXext libXfixes libXrandr libXcomposite slop icu ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "A command-line screenshot utility";
|
|
longDescription = ''
|
|
maim (make image) takes screenshots of your desktop. It has options to
|
|
take only a region, and relies on slop to query for regions. maim is
|
|
supposed to be an improved scrot.
|
|
'';
|
|
changelog = "https://github.com/naelstrof/maim/releases/tag/v${version}";
|
|
platforms = stdenv.lib.platforms.all;
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ primeos mbakke ];
|
|
};
|
|
}
|