linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / cpufetch / default.nix
blob37a6dfdc9dd53f99a3fc18d19ed41108dd93dccb
1 { stdenv, lib, fetchFromGitHub, installShellFiles }:
3 stdenv.mkDerivation rec {
4   pname = "cpufetch";
5   version = "0.94";
7   src = fetchFromGitHub {
8     owner  = "Dr-Noob";
9     repo   = "cpufetch";
10     rev    = "v${version}";
11     sha256 = "1gncgkhqd8bnz254qa30yyl10qm28dwx6aif0dwrj38z5ql40ck9";
12   };
14   nativeBuildInputs = [ installShellFiles ];
16   installPhase = ''
17     runHook preInstall
19     mkdir $out
20     install -Dm755 cpufetch   $out/bin/cpufetch
21     install -Dm644 LICENSE    $out/share/licenses/cpufetch/LICENSE
22     installManPage cpufetch.8
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Simplistic yet fancy CPU architecture fetching tool";
29     license = licenses.mit;
30     homepage = "https://github.com/Dr-Noob/cpufetch";
31     changelog = "https://github.com/Dr-Noob/cpufetch/releases/tag/v${version}";
32     maintainers = with maintainers; [ devhell ];
33   };