2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitLab, libX11, xorgproto }:
|
2016-07-25 06:00:27 +02:00
|
|
|
|
2021-07-27 19:35:11 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xmagnify";
|
|
|
|
version = "0.1.0";
|
2016-07-25 06:00:27 +02:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "amiloradovsky";
|
|
|
|
repo = "magnify";
|
2021-07-27 19:35:11 +02:00
|
|
|
rev = version;
|
2016-07-25 06:00:27 +02:00
|
|
|
sha256 = "1ngnp5f5zl3v35vhbdyjpymy6mwrs0476fm5nd7dzkba7n841jdh";
|
|
|
|
};
|
|
|
|
|
2021-01-24 10:19:10 +01:00
|
|
|
prePatch = "substituteInPlace ./Makefile --replace /usr $out";
|
2016-07-25 06:00:27 +02:00
|
|
|
|
2018-12-31 04:40:47 +01:00
|
|
|
buildInputs = [ libX11 xorgproto ];
|
2016-07-25 06:00:27 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-07-25 06:00:27 +02:00
|
|
|
description = "Tiny screen magnifier for X11";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gitlab.com/amiloradovsky/magnify";
|
2016-07-25 06:00:27 +02:00
|
|
|
license = licenses.mit; # or GPL2+, optionally
|
|
|
|
maintainers = with maintainers; [ amiloradovsky ];
|
2022-04-01 21:34:55 +02:00
|
|
|
mainProgram = "magnify";
|
2016-07-25 06:00:27 +02:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|