about summary refs log tree commit diff
path: root/pkgs/tools/misc/screenfetch
diff options
context:
space:
mode:
authorChris Darnell <chris@cedeel.com>2016-10-16 19:07:49 -0400
committerChris Darnell <chris@cedeel.com>2016-10-16 19:07:49 -0400
commite21f8589225a9a2a416611b7cee810f79a04fff8 (patch)
tree09d2b9b3905f09c0cd8919cf1e4a418badfd9375 /pkgs/tools/misc/screenfetch
parent5118c50ba359e4a6190b6dba3c35b342c67c7661 (diff)
screenFetch: 2016-01-13 -> 2016-10-11
Diffstat (limited to 'pkgs/tools/misc/screenfetch')
-rw-r--r--pkgs/tools/misc/screenfetch/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/tools/misc/screenfetch/default.nix b/pkgs/tools/misc/screenfetch/default.nix
index 972e104927846..a689188666418 100644
--- a/pkgs/tools/misc/screenfetch/default.nix
+++ b/pkgs/tools/misc/screenfetch/default.nix
@@ -1,14 +1,15 @@
-{ stdenv, fetchgit, makeWrapper
-, coreutils, gawk, procps, gnused, findutils, xdpyinfo, xprop, gnugrep
+{ stdenv, fetchFromGitHub, makeWrapper, coreutils, gawk, procps, gnused
+, findutils, xdpyinfo, xprop, gnugrep, ncurses
 }:
 
 stdenv.mkDerivation {
-  name = "screenFetch-2016-01-13";
+  name = "screenFetch-2016-10-11";
 
-  src = fetchgit {
-    url = git://github.com/KittyKatt/screenFetch.git;
-    rev = "22e5bee7647453d45ec82f543f37b8a6a062835d";
-    sha256 = "0xdiz02bqg7ajj547j496qq9adysm1f6zymcy3yyfgw3prnzvdir";
+  src = fetchFromGitHub {
+    owner = "KittyKatt";
+    repo = "screenFetch";
+    rev = "89e51f24018c89b3647deb24406a9af3a78bbe99";
+    sha256 = "0i2k261jj2s4sfhav7vbsd362pa0gghw6qhwafhmicmf8hq2a18v";
   };
 
   nativeBuildInputs = [ makeWrapper ];
@@ -28,7 +29,8 @@ stdenv.mkDerivation {
       --prefix PATH : "${findutils}/bin" \
       --prefix PATH : "${xdpyinfo}/bin" \
       --prefix PATH : "${xprop}/bin" \
-      --prefix PATH : "${gnugrep}/bin"
+      --prefix PATH : "${gnugrep}/bin" \
+      --prefix PATH : "${ncurses}/bin"
   '';
 
   meta = {