mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #9049 from AndersonTorres/cmatrix
cmatrix: init at 1.2a
This commit is contained in:
commit
5945655fd6
2 changed files with 29 additions and 0 deletions
27
pkgs/applications/misc/cmatrix/default.nix
Normal file
27
pkgs/applications/misc/cmatrix/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, pkgconfig, ncurses }:
|
||||
|
||||
let
|
||||
version = "1.2a";
|
||||
in with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "cmatrix-${version}";
|
||||
|
||||
src = fetchurl{
|
||||
url = "http://www.asty.org/cmatrix/dist/${name}.tar.gz";
|
||||
sha256 = "0k06fw2n8nzp1pcdynhajp5prba03gfgsbj91bknyjr5xb5fd9hz";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig ncurses ];
|
||||
|
||||
meta = {
|
||||
description = "Simulates the falling characters theme from The Matrix movie";
|
||||
longDescription = ''
|
||||
CMatrix simulates the display from "The Matrix" and is based
|
||||
on the screensaver from the movie's website.
|
||||
'';
|
||||
homepage = http://www.asty.org/cmatrix/;
|
||||
platforms = ncurses.meta.platforms;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
};
|
||||
}
|
|
@ -10875,6 +10875,8 @@ let
|
|||
|
||||
clipit = callPackage ../applications/misc/clipit { };
|
||||
|
||||
cmatrix = callPackage ../applications/misc/cmatrix { };
|
||||
|
||||
bomi = callPackage ../applications/video/bomi {
|
||||
pulseSupport = config.pulseaudio or true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue