pyroclear 1.1.2

Watch your terminal go up in flames! A fire animation for clearing your terminal.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib
, rustPlatform
}:

rustPlatform.buildRustPackage {
  pname = "pyroclear";
  version = "0.1.0";

  src = ./.;

  cargoLock.lockFile = ./Cargo.lock;

  meta = {
    description = "Pyroclear";
    license = lib.licenses.mit;
    platforms = lib.platforms.linux;
  };
}