nixpkgs/pkgs/tools/misc/screenfetch/default.nix

63 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper, coreutils, gawk, procps, gnused
2019-10-15 20:09:25 +00:00
, bc, findutils, xdpyinfo, xprop, gnugrep, ncurses, pciutils
, darwin
2015-05-10 00:41:40 +00:00
}:
2018-02-09 10:04:55 +00:00
let
path = lib.makeBinPath ([
coreutils gawk gnused findutils
2019-10-15 20:09:25 +00:00
gnugrep ncurses bc pciutils
2018-02-09 10:04:55 +00:00
] ++ lib.optionals stdenv.isLinux [
procps
xdpyinfo
xprop
] ++ lib.optionals stdenv.isDarwin (with darwin; [
adv_cmds
DarwinTools
system_cmds
"/usr" # some commands like defaults is not available to us
]));
in stdenv.mkDerivation rec {
pname = "screenFetch";
version = "3.9.0";
2016-10-16 23:07:49 +00:00
src = fetchFromGitHub {
2018-02-09 10:04:55 +00:00
owner = "KittyKatt";
repo = "screenFetch";
rev = "v${version}";
sha256 = "11mqld9pppbappqbaj49mw2v5kysx06sy1xbs81i0hhgh35hlziv";
};
2015-05-10 00:41:40 +00:00
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
2015-05-10 00:41:40 +00:00
install -Dm 0755 screenfetch-dev $out/bin/screenfetch
2017-08-11 20:42:10 +00:00
install -Dm 0644 screenfetch.1 $out/share/man/man1/screenfetch.1
2018-02-09 10:04:55 +00:00
install -Dm 0644 -t $out/share/doc/screenfetch CHANGELOG COPYING README.mkdn TODO
2015-05-10 00:41:40 +00:00
2018-02-09 10:04:55 +00:00
# Fix all of the dependencies of screenfetch
2015-05-10 00:41:40 +00:00
patchShebangs $out/bin/screenfetch
wrapProgram "$out/bin/screenfetch" \
2018-02-09 10:04:55 +00:00
--prefix PATH : ${path}
'';
meta = with lib; {
2014-11-11 13:20:43 +00:00
description = "Fetches system/theme information in terminal for Linux desktop screenshots";
longDescription = ''
2018-02-09 10:04:55 +00:00
screenFetch is a "Bash Screenshot Information Tool". This handy Bash
script can be used to generate one of those nifty terminal theme
information + ASCII distribution logos you see in everyone's screenshots
nowadays. It will auto-detect your distribution and display an ASCII
version of that distribution's logo and some valuable information to the
right. There are options to specify no ascii art, colors, taking a
screenshot upon displaying info, and even customizing the screenshot
command! This script is very easy to add to and can easily be extended.
'';
license = licenses.gpl3;
2018-02-09 10:04:55 +00:00
homepage = https://github.com/KittyKatt/screenFetch;
maintainers = with maintainers; [ relrod ];
platforms = platforms.all;
};
}