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

39 lines
939 B
Nix
Raw Normal View History

2021-04-16 16:06:29 +02:00
{ lib, stdenvNoCC, fetchFromGitHub, bash, makeWrapper, pciutils }:
2017-01-22 21:46:31 +01:00
stdenvNoCC.mkDerivation rec {
2019-08-31 07:30:22 +02:00
pname = "neofetch";
2020-08-11 10:27:31 +02:00
version = "7.1.0";
2019-08-31 07:30:22 +02:00
2017-01-22 21:46:31 +01:00
src = fetchFromGitHub {
owner = "dylanaraps";
repo = "neofetch";
rev = version;
2020-08-11 10:27:31 +02:00
sha256 = "0i7wpisipwzk0j62pzaigbiq42y1mn4sbraz4my2jlz6ahwf00kv";
2017-01-22 21:46:31 +01:00
};
strictDeps = true;
buildInputs = [ bash ];
2021-04-16 16:06:29 +02:00
nativeBuildInputs = [ makeWrapper ];
postPatch = ''
patchShebangs --host neofetch
'';
2017-01-22 21:46:31 +01:00
2021-04-16 16:06:29 +02:00
postInstall = ''
wrapProgram $out/bin/neofetch \
--prefix PATH : ${lib.makeBinPath [ pciutils ]}
'';
2017-01-22 21:46:31 +01:00
makeFlags = [
2019-08-31 07:30:22 +02:00
"PREFIX=${placeholder "out"}"
"SYSCONFDIR=${placeholder "out"}/etc"
2017-01-22 21:46:31 +01:00
];
meta = with lib; {
2017-01-22 21:46:31 +01:00
description = "A fast, highly customizable system info script";
2020-03-10 10:09:46 +01:00
homepage = "https://github.com/dylanaraps/neofetch";
2017-01-22 21:46:31 +01:00
license = licenses.mit;
platforms = platforms.all;
2017-07-24 12:25:38 +02:00
maintainers = with maintainers; [ alibabzo konimex ];
2017-01-22 21:46:31 +01:00
};
}