nixpkgs/pkgs/tools/text/hottext/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
963 B
Nix
Raw Normal View History

2021-09-02 17:03:01 +00:00
{ lib, nimPackages, fetchurl, gentium, makeDesktopItem }:
2021-05-08 10:22:21 +00:00
2021-09-02 17:03:01 +00:00
nimPackages.buildNimPackage rec {
2021-05-08 10:22:21 +00:00
pname = "hottext";
2021-08-18 12:53:01 +00:00
version = "1.4";
2021-05-08 10:22:21 +00:00
2021-09-02 17:03:01 +00:00
nimBinOnly = true;
2021-05-08 10:22:21 +00:00
src = fetchurl {
url = "https://git.sr.ht/~ehmry/hottext/archive/v${version}.tar.gz";
2021-08-18 12:53:01 +00:00
sha256 = "sha256-hIUofi81zowSMbt1lUsxCnVzfJGN3FEiTtN8CEFpwzY=";
2021-05-08 10:22:21 +00:00
};
2021-09-02 17:03:01 +00:00
buildInputs = with nimPackages; [
pixie
sdl2
];
2021-05-08 10:22:21 +00:00
HOTTEXT_FONT_PATH = "${gentium}/share/fonts/truetype/GentiumPlus-Regular.ttf";
2021-05-08 10:22:21 +00:00
desktopItem = makeDesktopItem {
categories = [ "Utility" ];
2021-05-08 10:22:21 +00:00
comment = meta.description;
desktopName = pname;
exec = pname;
name = pname;
};
2021-09-02 17:03:01 +00:00
postInstall = ''
2021-05-08 10:22:21 +00:00
cp -r $desktopItem/* $out
'';
meta = with lib; {
broken = true; # Needs to be updated to latest Pixie API.
2021-05-08 10:22:21 +00:00
description = "Simple RSVP speed-reading utility";
license = licenses.unlicense;
homepage = "https://git.sr.ht/~ehmry/hottext";
maintainers = with maintainers; [ ehmry ];
};
}