nixpkgs/pkgs/tools/misc/fbcat/default.nix
2021-09-06 07:16:28 +00:00

34 lines
848 B
Nix

{ lib, stdenv, fetchFromGitHub } :
stdenv.mkDerivation rec {
pname = "fbcat";
version = "0.5.2";
src = fetchFromGitHub {
owner = "jwilk";
repo = pname;
rev = version;
sha256 = "sha256-ORzcd8XGy2BfwuPK5UX+K5Z+FYkb+tdg/gHl3zHjvbk=";
};
# hardcoded because makefile target "install" depends on libxslt dependencies from network
# that are just too hard to monkeypatch here
# so this is the simple fix.
installPhase = ''
mkdir -p $out
install -d $out/bin
install -m755 fbcat $out/bin/
install -m755 fbgrab $out/bin/
install -d $out/share/man/man1
'';
meta = with lib; {
homepage = "http://jwilk.net/software/fbcat";
description = "Framebuffer screenshot tool";
license = licenses.gpl2Plus;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux;
};
}