mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
38 lines
965 B
Nix
38 lines
965 B
Nix
{ lib, buildNimPackage, fetchFromSourcehut, gentium, makeDesktopItem }:
|
|
|
|
buildNimPackage (finalAttrs: {
|
|
pname = "hottext";
|
|
version = "20231003";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~ehmry";
|
|
repo = "hottext";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-ncH/1PV4vZY7JCUJ87FPz5bdrQsNlYxzGdc5BQNfQeA=";
|
|
};
|
|
|
|
lockFile = ./lock.json;
|
|
|
|
HOTTEXT_FONT_PATH = "${gentium}/share/fonts/truetype/GentiumPlus-Regular.ttf";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
categories = [ "Utility" ];
|
|
comment = finalAttrs.meta.description;
|
|
desktopName = finalAttrs.pname;
|
|
exec = finalAttrs.pname;
|
|
name = finalAttrs.pname;
|
|
};
|
|
|
|
postInstall = ''
|
|
cp -r $desktopItem/* $out
|
|
'';
|
|
|
|
meta = finalAttrs.src.meta // {
|
|
description = "Simple RSVP speed-reading utility";
|
|
license = lib.licenses.unlicense;
|
|
homepage = "https://git.sr.ht/~ehmry/hottext";
|
|
maintainers = with lib.maintainers; [ ehmry ];
|
|
mainProgram = "hottext";
|
|
};
|
|
})
|