Merge pull request #19609 from cedeel/screenfetch

screenFetch: 2016-01-13 -> 2016-10-11

authored by Pascal Wittmann and committed by GitHub 58e552fc 0a6ec885

+10 -8
+10 -8
pkgs/tools/misc/screenfetch/default.nix
··· 1 - { stdenv, fetchgit, makeWrapper 2 - , coreutils, gawk, procps, gnused, findutils, xdpyinfo, xprop, gnugrep 1 + { stdenv, fetchFromGitHub, makeWrapper, coreutils, gawk, procps, gnused 2 + , findutils, xdpyinfo, xprop, gnugrep, ncurses 3 3 }: 4 4 5 5 stdenv.mkDerivation { 6 - name = "screenFetch-2016-01-13"; 6 + name = "screenFetch-2016-10-11"; 7 7 8 - src = fetchgit { 9 - url = git://github.com/KittyKatt/screenFetch.git; 10 - rev = "22e5bee7647453d45ec82f543f37b8a6a062835d"; 11 - sha256 = "0xdiz02bqg7ajj547j496qq9adysm1f6zymcy3yyfgw3prnzvdir"; 8 + src = fetchFromGitHub { 9 + owner = "KittyKatt"; 10 + repo = "screenFetch"; 11 + rev = "89e51f24018c89b3647deb24406a9af3a78bbe99"; 12 + sha256 = "0i2k261jj2s4sfhav7vbsd362pa0gghw6qhwafhmicmf8hq2a18v"; 12 13 }; 13 14 14 15 nativeBuildInputs = [ makeWrapper ]; ··· 28 29 --prefix PATH : "${findutils}/bin" \ 29 30 --prefix PATH : "${xdpyinfo}/bin" \ 30 31 --prefix PATH : "${xprop}/bin" \ 31 - --prefix PATH : "${gnugrep}/bin" 32 + --prefix PATH : "${gnugrep}/bin" \ 33 + --prefix PATH : "${ncurses}/bin" 32 34 ''; 33 35 34 36 meta = {