blob: 846b600d8e99890edd2f0ba35143a12645c91d0a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ lib, fetchFromGitHub, rustPlatform, testers, fsrx }:
rustPlatform.buildRustPackage rec {
pname = "fsrx";
version = "1.0.2";
src = fetchFromGitHub {
owner = "thatvegandev";
repo = pname;
rev = "v${version}";
sha256 = "sha256-hzfpjunP20WCt3erYu7AO7A3nz+UMKdFzWUA5jASbVA=";
};
cargoSha256 = "sha256-bRStmz2sJnhCKpvoQfc/ZP9B2ZdNHYNEHd+wZErdS1Y=";
passthru = {
tests.version = testers.testVersion {
package = fsrx;
};
};
meta = with lib; {
description = "Flow state reader in the terminal";
homepage = "https://github.com/thatvegandev/fsrx";
license = licenses.mit;
maintainers = with maintainers; [ MoritzBoehme ];
mainProgram = "fsrx";
};
}
|