mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 23:07:36 +03:00
pfetch: use stdenvNoCC for smaller build-time closure
This commit is contained in:
parent
8e48bafca1
commit
1ff48dce3a
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub }:
|
{ stdenvNoCC, lib, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "pfetch";
|
pname = "pfetch";
|
||||||
version = "0.4.0";
|
version = "0.4.0";
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
install -Dm755 -t $out/bin pfetch
|
install -Dm755 -t $out/bin pfetch
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A pretty system information tool written in POSIX sh";
|
description = "A pretty system information tool written in POSIX sh";
|
||||||
homepage = https://github.com/dylanaraps/pfetch;
|
homepage = https://github.com/dylanaraps/pfetch;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
Reference in New Issue
Block a user