cmatrix: init at 1.2a

Changed files
+29
pkgs
applications
misc
cmatrix
top-level
+27
pkgs/applications/misc/cmatrix/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, ncurses }: 2 + 3 + let 4 + version = "1.2a"; 5 + in with stdenv.lib; 6 + stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 10723 10723 10724 10724 clipit = callPackage ../applications/misc/clipit { }; 10725 10725 10726 + cmatrix = callPackage ../applications/misc/cmatrix { }; 10727 + 10726 10728 bomi = callPackage ../applications/video/bomi { 10727 10729 stdenv = overrideCC stdenv gcc49; 10728 10730 pulseSupport = config.pulseaudio or true;