Skip to content

Commit

Permalink
fbcat: init at 0.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
  • Loading branch information
matthiasbeyer committed Dec 25, 2020
1 parent 15edb39 commit bdedc49
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/tools/misc/fbcat/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub } :

stdenv.mkDerivation rec {
pname = "fbcat";
version = "0.5.1";

src = fetchFromGitHub {
owner = "jwilk";
repo = pname;
rev = version;
sha256 = "08y79br4a4cgkjnslw0hw57441ybsapaw7wjdbak19mv9lnl5ll9";
};

# 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 stdenv.lib; {
homepage = "http://jwilk.net/software/fbcat";
description = "Framebuffer screenshot tool";
license = licenses.gpl2Plus;
maintainers = [ maintainers.matthiasbeyer ];
platforms = platforms.linux;
};
}

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3985,6 +3985,8 @@ in

feedgnuplot = callPackage ../tools/graphics/feedgnuplot { };

fbcat = callPackage ../tools/misc/fbcat { };

fbv = callPackage ../tools/graphics/fbv { };

fbvnc = callPackage ../tools/admin/fbvnc {};
Expand Down

0 comments on commit bdedc49

Please sign in to comment.