lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at release-16.03-start 27 lines 728 B view raw
1{ stdenv, fetchurl, pkgconfig, ncurses }: 2 3let 4 version = "1.2a"; 5in with stdenv.lib; 6stdenv.mkDerivation rec { 7 8 name = "cmatrix-${version}"; 9 10 src = fetchurl{ 11 url = "http://www.asty.org/cmatrix/dist/${name}.tar.gz"; 12 sha256 = "0k06fw2n8nzp1pcdynhajp5prba03gfgsbj91bknyjr5xb5fd9hz"; 13 }; 14 15 buildInputs = [ pkgconfig ncurses ]; 16 17 meta = { 18 description = "Simulates the falling characters theme from The Matrix movie"; 19 longDescription = '' 20 CMatrix simulates the display from "The Matrix" and is based 21 on the screensaver from the movie's website. 22 ''; 23 homepage = http://www.asty.org/cmatrix/; 24 platforms = ncurses.meta.platforms; 25 maintainers = [ maintainers.AndersonTorres ]; 26 }; 27}