lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 35 lines 723 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5 testers, 6 fsrx, 7}: 8 9rustPlatform.buildRustPackage rec { 10 pname = "fsrx"; 11 version = "1.0.2"; 12 13 src = fetchFromGitHub { 14 owner = "thatvegandev"; 15 repo = "fsrx"; 16 rev = "v${version}"; 17 sha256 = "sha256-hzfpjunP20WCt3erYu7AO7A3nz+UMKdFzWUA5jASbVA="; 18 }; 19 20 cargoHash = "sha256-hOE05t3gjul7uOt14vr5hAmGHTPgxJk7EOKJhZ4XgCo="; 21 22 passthru = { 23 tests.version = testers.testVersion { 24 package = fsrx; 25 }; 26 }; 27 28 meta = with lib; { 29 description = "Flow state reader in the terminal"; 30 homepage = "https://github.com/thatvegandev/fsrx"; 31 license = licenses.mit; 32 maintainers = with maintainers; [ MoritzBoehme ]; 33 mainProgram = "fsrx"; 34 }; 35}