about summary refs log tree commit diff stats
path: root/pkgs/by-name/sn/snap-sync-forked/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/sn/snap-sync-forked/package.nix')
-rw-r--r--pkgs/by-name/sn/snap-sync-forked/package.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/pkgs/by-name/sn/snap-sync-forked/package.nix b/pkgs/by-name/sn/snap-sync-forked/package.nix
deleted file mode 100644
index 4be1b222..00000000
--- a/pkgs/by-name/sn/snap-sync-forked/package.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-# nixos-config - My current NixOS configuration
-#
-# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-# This file is part of my nixos-config.
-#
-# You should have received a copy of the License along with this program.
-# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
-{
-  writeShellApplication,
-  bash,
-  btrfs-progs,
-  coreutils,
-  gawk,
-  gnugrep,
-  snapper,
-  util-linux,
-  # optional
-  libnotify,
-  openssh,
-  pv,
-  rsync,
-  sudo,
-}:
-writeShellApplication {
-  name = "snap-sync-forked";
-  text = builtins.readFile ./snap-sync-forked.sh;
-  inheritPath = false;
-  runtimeInputs = [
-    bash
-    btrfs-progs
-    coreutils
-    gawk
-    gnugrep
-    snapper
-    util-linux
-
-    # optional:
-    libnotify
-    openssh
-    pv
-    rsync
-    sudo
-  ];
-}