flake: remove lunatask

This commit is contained in:
Aaron Bieber 2023-01-25 15:45:28 -07:00
parent 74fcc7dc41
commit bfdb9b3f2d
No known key found for this signature in database
2 changed files with 0 additions and 24 deletions

View File

@ -285,7 +285,6 @@
isUnstable = true;
};
rkvm = pkgs.callPackage ./pkgs/rkvm.nix { inherit pkgs; };
lunatask = pkgs.callPackage ./pkgs/lunatask.nix { inherit pkgs; };
inherit (xintray.packages.${system}) xintray;
inherit (tsvnstat.packages.${system}) tsvnstat;
inherit (pots.packages.${system}) pots;

View File

@ -1,23 +0,0 @@
{ lib, fetchurl, appimageTools, makeDesktopItem, desktop-file-utils, ... }:
let
name = "lunatask";
version = "1.5.12";
src = fetchurl {
name = "Lunatask-${version}";
url = "https://lunatask.app/download/Lunatask-${version}.AppImage";
sha256 = "sha256-Aw8w4RmVIsZXUtIn8A8VtBLzX+xVFyQvppSpWZJvTpA=";
};
appimageContents = appimageTools.extract { inherit name src; };
in appimageTools.wrapType2 {
inherit name src;
extraInstallCommands = ''
cp -r ${appimageContents}/* $out
'';
#extraPkgs = pkgs: with pkgs; [ ];
}