feat: improve EonTimer package

This commit is contained in:
Leon Schwarzäugl 2025-01-02 13:43:51 +01:00
parent 52c6bce5a1
commit 07a99987a7
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
13 changed files with 214 additions and 90 deletions

11
pkgs/fhs/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ name, pkgs, ... }:
let
base = pkgs.appimageTools.defaultFhsEnvArgs;
in
pkgs.buildFHSEnv (base // {
name = "fhs";
targetPkgs = pkgs: (base.targetPkgs pkgs) ++ [ pkgs.pkg-config ];
profile = "export FHS=1";
runScript = "zsh";
extraOutputsToInstall = [ "dev" ];
})