Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
maim,
|
|
slop,
|
|
ffmpeg,
|
|
byzanz,
|
|
libnotify,
|
|
xdpyinfo,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "yaxg";
|
|
version = "0-unstable-2018-05-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "DanielFGray";
|
|
repo = "yaxg";
|
|
rev = "9d6af75da2ec25dba4b8d784e431064033d67ad2";
|
|
sha256 = "01p6ghp1vfrlnrm78bgbl9ppqwsdxh761g0qa172dpvsqg91l1p6";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [
|
|
maim
|
|
slop
|
|
ffmpeg
|
|
byzanz
|
|
libnotify
|
|
xdpyinfo
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin/
|
|
mv yaxg $out/bin/
|
|
chmod +x $out/bin/yaxg
|
|
wrapProgram $out/bin/yaxg --prefix PATH : ${
|
|
lib.makeBinPath [
|
|
maim
|
|
slop
|
|
ffmpeg
|
|
byzanz
|
|
libnotify
|
|
xdpyinfo
|
|
]
|
|
}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
inherit (src.meta) homepage;
|
|
description = "Yet Another X Grabber script";
|
|
longDescription = ''
|
|
Capture and record your screen with callbacks. Wraps maim, slop, ffmpeg,
|
|
and byzanz to enable still image, video, or gif recording of part or all
|
|
of your screen. Similar command-line interface to scrot but is overall
|
|
more flexible and less buggy.
|
|
'';
|
|
platforms = platforms.all;
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "yaxg";
|
|
};
|
|
}
|