1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00
nixpkgs/pkgs/tools/misc/neofetch/default.nix

29 lines
657 B
Nix
Raw Normal View History

2017-07-24 11:25:38 +01:00
{ stdenv, fetchFromGitHub, fetchpatch }:
2017-01-22 20:46:31 +00:00
stdenv.mkDerivation rec {
name = "neofetch-${version}";
2018-04-06 08:55:08 +01:00
version = "3.4.0";
2017-01-22 20:46:31 +00:00
src = fetchFromGitHub {
owner = "dylanaraps";
repo = "neofetch";
rev = version;
2018-04-06 08:55:08 +01:00
sha256 = "10h4f7n6bllbq459nm9wppvk65n81zzv556njfqplzw3mpdrbiyx";
2017-01-22 20:46:31 +00:00
};
dontBuild = true;
makeFlags = [
2017-07-24 11:25:38 +01:00
"PREFIX=$(out)"
"SYSCONFDIR=$(out)/etc"
2017-01-22 20:46:31 +00:00
];
meta = with stdenv.lib; {
description = "A fast, highly customizable system info script";
homepage = https://github.com/dylanaraps/neofetch;
license = licenses.mit;
platforms = platforms.all;
2017-07-24 11:25:38 +01:00
maintainers = with maintainers; [ alibabzo konimex ];
2017-01-22 20:46:31 +00:00
};
}