Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a245f213142f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 81aafb22ffab
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 14, 2020

  1. Copy the full SHA
    8e48baf View commit details
  2. Copy the full SHA
    1ff48dc View commit details

Commits on Jan 16, 2020

  1. Merge pull request #77697 from dtzWill/fix/pfetch-minor-dontbuild-tou…

    …chup
    
    pfetch: dontbuild -> dontBuild, installPhase touchup, stdenvNoCC
    dtzWill authored Jan 16, 2020
    Copy the full SHA
    81aafb2 View commit details
Showing with 5 additions and 6 deletions.
  1. +5 −6 pkgs/tools/misc/pfetch/default.nix
11 changes: 5 additions & 6 deletions pkgs/tools/misc/pfetch/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub }:
{ stdenvNoCC, lib, fetchFromGitHub }:

stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "pfetch";
version = "0.4.0";

@@ -11,14 +11,13 @@ stdenv.mkDerivation rec {
sha256 = "180vvbmvak888vs4dgzlmqk0ss4qfsz09700n4p8s68j7krkxsfq";
};

dontbuild = true;
dontBuild = true;

installPhase = ''
mkdir -p $out/bin
cp pfetch $out/bin
install -Dm755 -t $out/bin pfetch
'';

meta = with stdenv.lib; {
meta = with lib; {
description = "A pretty system information tool written in POSIX sh";
homepage = https://github.com/dylanaraps/pfetch;
license = licenses.mit;