mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-30 08:44:31 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
}:
|
|
|
|
let
|
|
version = "6.8.5";
|
|
pname = "timeular";
|
|
|
|
src = fetchurl {
|
|
url = "https://s3.amazonaws.com/timeular-desktop-packages/linux/production/Timeular-${version}.AppImage";
|
|
hash = "sha256-hawVddF6jt0/fTL0bWAoK82F7mqskQLEO6w7/HBLLxQ=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in
|
|
appimageTools.wrapType2 rec {
|
|
inherit pname version src;
|
|
|
|
extraPkgs = pkgs: [ pkgs.libsecret ];
|
|
|
|
extraInstallCommands = ''
|
|
install -m 444 -D ${appimageContents}/timeular.desktop $out/share/applications/timeular.desktop
|
|
install -m 444 -D ${appimageContents}/timeular.png $out/share/icons/hicolor/512x512/apps/timeular.png
|
|
substituteInPlace $out/share/applications/timeular.desktop \
|
|
--replace "Exec=AppRun --no-sandbox %U" "Exec=$out/bin/${pname}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Timetracking by flipping 8-sided dice";
|
|
longDescription = ''
|
|
The Timeular Tracker is an 8-sided dice that sits on your desk.
|
|
Assign an activity to each side and flip to start tracking your time.
|
|
The desktop app tell you where every minute of your day is spent.
|
|
'';
|
|
homepage = "https://timeular.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ ktor ];
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "timeular";
|
|
};
|
|
}
|