1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 07:00:43 +00:00

minetime: init at 1.4.10, using appimageTools

This commit is contained in:
Will Dietz 2019-02-12 23:27:58 -06:00
parent fb771b072a
commit 25fb5d553c
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ appimageTools, fetchurl, lib }:
let
pname = "MineTime";
version = "1.4.10";
in
appimageTools.wrapType2 rec {
name = "${pname}-${version}";
src = fetchurl {
url = "https://github.com/marcoancona/MineTime/releases/download/v${version}/${name}-x86_64.AppImage";
sha256 = "11w1v9vlg51masxgigraqp5547dl02jrrwhzz5gcckv4l9y8rlyw";
};
extraPkgs = p: p.atomEnv.packages;
# Ideally inherit this, but it needs to be set or the app fails to launch.
profile = ''
export LC_ALL=C.UTF8
'';
meta = with lib; {
description = "Modern, intuitive and smart calendar application";
homepage = https://minetime.ai;
license = licenses.unfree;
# Should be cross-platform, but for now we just grab the appimage
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ dtzWill ];
};
}

View file

@ -4399,6 +4399,8 @@ in
mimetic = callPackage ../development/libraries/mimetic { };
minetime = callPackage ../applications/office/minetime { };
minio-client = callPackage ../tools/networking/minio-client {
buildGoPackage = buildGo110Package;
};