cmatrix: 1.2a -> 2.0
This commit is contained in:
parent
955480e6bf
commit
72e926a96c
@ -1,21 +1,20 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, ncurses }:
|
{ stdenv, fetchFromGitHub, autoreconfHook, ncurses }:
|
||||||
|
|
||||||
let
|
|
||||||
version = "1.2a";
|
|
||||||
in with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "cmatrix";
|
||||||
|
version = "2.0";
|
||||||
|
|
||||||
name = "cmatrix-${version}";
|
src = fetchFromGitHub {
|
||||||
|
owner = "abishekvashok";
|
||||||
src = fetchurl{
|
repo = "cmatrix";
|
||||||
url = "http://www.asty.org/cmatrix/dist/${name}.tar.gz";
|
rev = "v${version}";
|
||||||
sha256 = "0k06fw2n8nzp1pcdynhajp5prba03gfgsbj91bknyjr5xb5fd9hz";
|
sha256 = "1h9jz4m4s5l8c3figaq46ja0km1gimrkfxm4dg7mf4s84icmasbm";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Simulates the falling characters theme from The Matrix movie";
|
description = "Simulates the falling characters theme from The Matrix movie";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
CMatrix simulates the display from "The Matrix" and is based
|
CMatrix simulates the display from "The Matrix" and is based
|
||||||
|
Loading…
x
Reference in New Issue
Block a user