Merge pull request #123977 from fortuneteller2k/bfetch
This commit is contained in:
commit
62c7925218
29
pkgs/tools/misc/bfetch/default.nix
Normal file
29
pkgs/tools/misc/bfetch/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, stdenvNoCC, fetchFromGitHub, bash }:
|
||||
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
pname = "bfetch";
|
||||
version = "unstable-2021-05-21";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NNBnh";
|
||||
repo = pname;
|
||||
rev = "ef88e9d3f815e5074efc8ef4b7f32be6818130f2";
|
||||
sha256 = "sha256-jS9zI8b+z3KbI+LeHFwIMJfEmAKSzO8HRZ2rk35hJCk=";
|
||||
};
|
||||
|
||||
buildInputs = [ bash ];
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs --host bin/bfetch
|
||||
'';
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A SuperB general-purpose fetch displayer written in portable sh";
|
||||
homepage = "https://github.com/NNBnh/bfetch";
|
||||
license = licenses.gpl3Only;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ fortuneteller2k ];
|
||||
};
|
||||
}
|
@ -1868,6 +1868,8 @@ in
|
||||
|
||||
behdad-fonts = callPackage ../data/fonts/behdad-fonts { };
|
||||
|
||||
bfetch = callPackage ../tools/misc/bfetch { };
|
||||
|
||||
bless = callPackage ../applications/editors/bless { };
|
||||
|
||||
blink1-tool = callPackage ../tools/misc/blink1-tool { };
|
||||
|
Loading…
Reference in New Issue
Block a user