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: 259d61b34a35
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 25944370e1d0
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 15, 2017

  1. maintainer: change email

    konimex authored and rycee committed Sep 15, 2017

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    0e09b79 View commit details
  2. neofetch: 3.2.0 -> 3.3.0

    konimex authored and rycee committed Sep 15, 2017

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    2594437 View commit details
Showing with 3 additions and 15 deletions.
  1. +1 −1 lib/maintainers.nix
  2. +2 −14 pkgs/tools/misc/neofetch/default.nix
2 changes: 1 addition & 1 deletion lib/maintainers.nix
Original file line number Diff line number Diff line change
@@ -304,7 +304,7 @@
kiloreux = "Kiloreux Emperex <kiloreux@gmail.com>";
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
knedlsepp = "Josef Kemetmüller <josef.kemetmueller@gmail.com>";
konimex = "Muhammad Herdiansyah <herdiansyah@openmailbox.org>";
konimex = "Muhammad Herdiansyah <herdiansyah@netc.eu>";
koral = "Koral <koral@mailoo.org>";
kovirobi = "Kovacsics Robert <kovirobi@gmail.com>";
kragniz = "Louis Taylor <louis@kragniz.eu>";
16 changes: 2 additions & 14 deletions pkgs/tools/misc/neofetch/default.nix
Original file line number Diff line number Diff line change
@@ -2,26 +2,14 @@

stdenv.mkDerivation rec {
name = "neofetch-${version}";
version = "3.2.0";
version = "3.3.0";
src = fetchFromGitHub {
owner = "dylanaraps";
repo = "neofetch";
rev = version;
sha256 = "1skkclvkqayqsbywja2fhv18l4rn9kg2da6bkip82zrwd713akl3";
sha256 = "1f1hvd635wv81qg802jdi0yggi4631w9nlznipaxkvk4y1zpdq5j";
};

# This patch is only needed so that Neofetch 3.2.0 can look for
# configuration file, w3m directory (for fetching images) and ASCII
# directory properly. It won't be needed in subsequent releases.
patches = [
(fetchpatch {
name = "nixos.patch";
url = "https://github.com/konimex/neofetch/releases/download/3.2.0/nixos.patch";
sha256 = "0c6vsa74bxq6qlgbv3rrkhzkpvnq4304s6y2r1bl0sachyakaljy";
})
];


dontBuild = true;