mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
flitter: init at unstable-2020-10-05
This commit is contained in:
parent
0ad041e5bc
commit
18d24771da
55
pkgs/tools/misc/flitter/default.nix
Normal file
55
pkgs/tools/misc/flitter/default.nix
Normal file
@ -0,0 +1,55 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, ocamlPackages
|
||||
, fetchFromGitHub
|
||||
, makeWrapper
|
||||
, python3
|
||||
}:
|
||||
|
||||
ocamlPackages.buildDunePackage rec {
|
||||
pname = "flitter";
|
||||
# request to tag releases: https://github.com/alexozer/flitter/issues/34
|
||||
version = "unstable-2020-10-05";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "alexozer";
|
||||
repo = "flitter";
|
||||
rev = "666c5483bc93efa6d01e0b7a927461269f8e14de";
|
||||
sha256 = "1k3m7bjq5yrrq7vhnbdykni65dsqhq6knnv9wvwq3svb3n07z4w3";
|
||||
};
|
||||
|
||||
# https://github.com/alexozer/flitter/issues/28
|
||||
postPatch = ''
|
||||
for f in src/colors.ml src/duration.ml src/event_loop.ml src/splits.ml; do
|
||||
substituteInPlace "$f" \
|
||||
--replace 'Unix.gettimeofday' 'Caml_unix.gettimeofday'
|
||||
done
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
buildInputs = with ocamlPackages; [
|
||||
core
|
||||
lwt_ppx
|
||||
sexp_pretty
|
||||
color
|
||||
notty
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/flitter \
|
||||
--prefix PATH : "${python3.withPackages (pp: [ pp.pynput ])}/bin"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A 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;
|
||||
};
|
||||
}
|
@ -2849,6 +2849,8 @@ with pkgs;
|
||||
|
||||
fits-cloudctl = callPackage ../tools/admin/fits-cloudctl { };
|
||||
|
||||
flitter = callPackage ../tools/misc/flitter { };
|
||||
|
||||
frangipanni = callPackage ../tools/text/frangipanni { };
|
||||
|
||||
fselect = callPackage ../tools/misc/fselect { };
|
||||
|
Loading…
Reference in New Issue
Block a user