nixpkgs/pkgs/by-name/ya/yaxg/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

40 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub, makeWrapper,
maim, slop, ffmpeg, byzanz, libnotify, xdpyinfo }:
stdenv.mkDerivation rec {
pname = "yaxg";
version = "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;
maintainers = with maintainers; [ neonfuz ];
mainProgram = "yaxg";
};
}