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

29 lines
663 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2017-01-22 20:46:31 +00:00
stdenv.mkDerivation rec {
2019-08-31 05:30:22 +00:00
pname = "neofetch";
2020-08-11 08:27:31 +00:00
version = "7.1.0";
2019-08-31 05:30:22 +00:00
2017-01-22 20:46:31 +00:00
src = fetchFromGitHub {
owner = "dylanaraps";
repo = "neofetch";
rev = version;
2020-08-11 08:27:31 +00:00
sha256 = "0i7wpisipwzk0j62pzaigbiq42y1mn4sbraz4my2jlz6ahwf00kv";
2017-01-22 20:46:31 +00:00
};
dontBuild = true;
makeFlags = [
2019-08-31 05:30:22 +00:00
"PREFIX=${placeholder "out"}"
"SYSCONFDIR=${placeholder "out"}/etc"
2017-01-22 20:46:31 +00:00
];
meta = with lib; {
2017-01-22 20:46:31 +00:00
description = "A fast, highly customizable system info script";
2020-03-10 09:09:46 +00:00
homepage = "https://github.com/dylanaraps/neofetch";
2017-01-22 20:46:31 +00:00
license = licenses.mit;
platforms = platforms.all;
2017-07-24 10:25:38 +00:00
maintainers = with maintainers; [ alibabzo konimex ];
2017-01-22 20:46:31 +00:00
};
}