wow
This commit is contained in:
parent
15091ac422
commit
e762d73f06
2 changed files with 24 additions and 8 deletions
|
|
@ -1,4 +1,24 @@
|
|||
{ pkgs, inputs }:
|
||||
let
|
||||
tetrioPlus = pkgs.stdenvNoCC.mkDerivation {
|
||||
pname = "tetrio-plus";
|
||||
version = "0.28.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://gitlab.com/UniQMG/tetrio-plus/-/jobs/13795436076/artifacts/raw/tetrio-plus_v0.28.0_for_desktop_v10.asar.zip";
|
||||
hash = "sha256-82fbKas/vEinn74yWTXLnU3xmy77A7VXF8yEliXpvmo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgs.unzip ];
|
||||
dontUnpack = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
unzip -p "$src" app.asar > "$out"
|
||||
runHook postInstall
|
||||
'';
|
||||
};
|
||||
in
|
||||
with pkgs;
|
||||
(import ../../../../modules/home/packages.nix { inherit pkgs inputs; })
|
||||
++ [
|
||||
|
|
@ -9,6 +29,10 @@ with pkgs;
|
|||
# inputs.waterfox.packages.${pkgs.system}.waterfox
|
||||
gnome-network-displays
|
||||
element-desktop
|
||||
(tetrio-desktop.override {
|
||||
withTetrioPlus = true;
|
||||
tetrio-plus = tetrioPlus;
|
||||
})
|
||||
# Provides secret-tool, used by Quickshell to load/save API keys.
|
||||
libsecret
|
||||
inputs.imnyang.packages.${stdenv.hostPlatform.system}.figma-linux
|
||||
|
|
|
|||
Loading…
Reference in a new issue