2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
2021-06-20 21:35:04 +00:00
|
|
|
, zlib, libpng, libjpeg, libwebp, libGLU, libGL, glm
|
2018-04-23 08:31:14 +00:00
|
|
|
, libX11, libXext, libXfixes, libXrandr, libXcomposite, slop, icu
|
|
|
|
}:
|
2015-03-04 16:10:13 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "maim";
|
2021-06-20 21:35:04 +00:00
|
|
|
version = "5.7.4";
|
2015-03-04 16:10:13 +00:00
|
|
|
|
2017-06-07 23:51:34 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "naelstrof";
|
|
|
|
repo = "maim";
|
|
|
|
rev = "v${version}";
|
2021-06-20 21:35:04 +00:00
|
|
|
sha256 = "sha256-uFtiwaM3H09vfvz3wVvumbqkoZhLNJxONkMqqqrJBs4=";
|
2015-03-04 16:10:13 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2021-06-20 21:35:04 +00:00
|
|
|
buildInputs = [ zlib libpng libjpeg libwebp libGLU libGL glm
|
2018-04-23 08:31:14 +00:00
|
|
|
libX11 libXext libXfixes libXrandr libXcomposite slop icu ];
|
2015-03-04 16:10:13 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-06-07 23:51:34 +00:00
|
|
|
inherit (src.meta) homepage;
|
2015-03-04 16:10:13 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-12 15:09:00 +00:00
|
|
|
changelog = "https://github.com/naelstrof/maim/releases/tag/v${version}";
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
|
|
|
license = lib.licenses.gpl3Plus;
|
2021-06-15 11:46:24 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-03-04 16:10:13 +00:00
|
|
|
};
|
|
|
|
}
|