matt1432
fcb127ec84
All checks were successful
Discord / discord commits (push) Has been skipped
Flake Inputs: • Updated input 'agsV2': 'github:Aylur/ags/9fe75a1' (2024-10-22) → 'github:Aylur/ags/4b1e7da' (2024-11-01) • Updated input 'astal': 'github:Aylur/astal/2585ca7' (2024-10-30) → 'github:Aylur/astal/d47b470' (2024-11-01) • Updated input 'custom-sidebar-src': 'github:elchininet/custom-sidebar/395688b' (2024-10-27) → 'github:elchininet/custom-sidebar/29afb63' (2024-11-01) • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=ea139ab' (2024-10-28) → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=258f690' (2024-11-01) • Updated input 'home-manager': 'github:nix-community/home-manager/e834140' (2024-10-27) → 'github:nix-community/home-manager/1743615' (2024-11-01) • Updated input 'hyprland': 'github:hyprwm/Hyprland/7c7a84f' (2024-10-30) → 'github:hyprwm/Hyprland/32b1817' (2024-11-01) • Updated input 'hyprland-plugins': 'github:hyprwm/hyprland-plugins/81bda67' (2024-10-28) → 'github:hyprwm/hyprland-plugins/60c5c63' (2024-10-31) • Updated input 'jovian': 'github:Jovian-Experiments/Jovian-NixOS/c11bab1' (2024-10-30) → 'github:Jovian-Experiments/Jovian-NixOS/bd1da56' (2024-11-01) • Updated input 'material-rounded-theme-src': 'github:Nerwyn/material-rounded-theme/5fbb943' (2024-10-30) → 'github:Nerwyn/material-rounded-theme/c5ab28a' (2024-10-31) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/105d77f' (2024-10-30) → 'github:fufexan/nix-gaming/bcc7c89' (2024-11-01) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/18536bf' (2024-10-25) → 'github:NixOS/nixpkgs/807e915' (2024-10-29) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/35f40f1' (2024-10-30) → 'github:nix-community/nixpkgs-wayland/30bd379' (2024-11-01) • Updated input 'nixpkgs-wayland/nix-eval-jobs': 'github:nix-community/nix-eval-jobs/a3307ac' (2024-10-10) → 'github:nix-community/nix-eval-jobs/7f9159a' (2024-10-31) • Updated input 'pcsd': 'github:matt1432/nixos-pcsd/d2aacb2' (2024-10-29) → 'github:matt1432/nixos-pcsd/18409e6' (2024-11-01) • Updated input 'ts-for-gir-src': 'github:gjsify/ts-for-gir/72ad963' (2024-09-20) → 'github:gjsify/ts-for-gir/ec732f1' (2024-11-01) • Updated input 'tuya-local-src': 'github:make-all/tuya-local/bbd4179' (2024-10-30) → 'github:make-all/tuya-local/9142927' (2024-11-01) Docker Images: • 21hsmw/flaresolverr nodriver: sha256:506b7f26aaf10e8c07ab22f74a7eea31eca66e263fe52d570b7bc0ef29952db9 → sha256:21ade52a9dc85c1bc1592ccc994e41f3365a4603b3ca4a11328583aa6e99ace1 • ghcr.io/linuxserver/sabnzbd latest: sha256:293517b90ef929178387f07c074c1f88d96d94eac3c1d95944ba2891527c1396 → sha256:5ae714b1a941a38471c2cc381ec407f93b3d7823c5a77a9a651502036b70ad69 Misc Sources: Vuetorrent: 2.15.0 -> 2.16.0
42 lines
810 B
Nix
42 lines
810 B
Nix
{
|
|
concatTextFile,
|
|
custom-sidebar-src,
|
|
nodejs,
|
|
pnpm,
|
|
stdenv,
|
|
...
|
|
}: let
|
|
package = builtins.fromJSON (builtins.readFile "${custom-sidebar-src}/package.json");
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "custom-sidebar";
|
|
inherit (package) version;
|
|
|
|
src = custom-sidebar-src;
|
|
|
|
nativeBuildInputs = [
|
|
nodejs
|
|
pnpm.configHook
|
|
];
|
|
|
|
buildPhase = ''
|
|
npm run build
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
cp ./dist/* $out
|
|
'';
|
|
|
|
pnpmDeps = pnpm.fetchDeps {
|
|
inherit (finalAttrs) pname version src;
|
|
hash = "sha256-kwIheATWkKnkbAEB6YMGVyRVKyVaKLw4cO8tmrtTyuw=";
|
|
};
|
|
|
|
passthru.update = concatTextFile {
|
|
name = "update";
|
|
files = [./update.sh];
|
|
executable = true;
|
|
destination = "/bin/update";
|
|
};
|
|
})
|