blob: b32329efd9ebcf63bb6d3840cd5b1c67502348f8 (
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
30
31
32
33
34
35
36
37
38
39
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, xorg
}:
rustPlatform.buildRustPackage rec {
pname = "flitter";
version = "1.1.0";
src = fetchFromGitHub {
owner = "alexozer";
repo = "flitter";
rev = "v${version}";
sha256 = "sha256-CjWixIiQFBoS+m8hPLqz0UR/EbQWgx8eKf3Y9kkgQew=";
};
cargoHash = "sha256-jkIdlvMYNopp8syZpIiAiekALUrRWWRKFFHYyMYRMg4=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
xorg.libX11
];
meta = with lib; {
description = "Livesplit-inspired speedrunning split timer for Linux/macOS terminal";
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
homepage = "https://github.com/alexozer/flitter";
platforms = platforms.unix;
mainProgram = "flitter";
broken = stdenv.isDarwin;
};
}
|