linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / pfetch / default.nix
blobbbecf4656e749ca7216f326ff9ddf9f9a053ed1f
1 { stdenvNoCC, lib, fetchFromGitHub }:
3 stdenvNoCC.mkDerivation rec {
4   pname = "pfetch";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "dylanaraps";
9     repo = "pfetch";
10     rev = version;
11     sha256 = "06z0k1naw3k052p2z7241lx92rp5m07zlr0alx8pdm6mkc3c4v8f";
12   };
14   dontBuild = true;
16   installPhase = ''
17     install -Dm755 -t $out/bin pfetch
18   '';
20   meta = with lib; {
21     description = "A pretty system information tool written in POSIX sh";
22     homepage = "https://github.com/dylanaraps/pfetch";
23     license = licenses.mit;
24     platforms = platforms.all;
25     maintainers = with maintainers; [ equirosa ];
26   };