From 649c08429a6a4e611e0c362a3b1c8263a5031c34 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Sun, 25 Aug 2024 23:23:03 +0200 Subject: [PATCH] pkgs: build-support: remove unneeded prefix Signed-off-by: Christoph Heiss --- pkgs/automation-shell.nix | 4 ++-- pkgs/build-support.nix | 2 +- pkgs/deploy-sink.nix | 4 ++-- pkgs/neomutt-export-patches.nix | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/automation-shell.nix b/pkgs/automation-shell.nix index 88b71c9..38c1b3f 100644 --- a/pkgs/automation-shell.nix +++ b/pkgs/automation-shell.nix @@ -1,6 +1,6 @@ -{ c8h4, sudo }: +{ buildPerlApplication, sudo }: -c8h4.buildPerlApplication { +buildPerlApplication { name = "automation-shell"; runtimeInputs = [ sudo ]; perlInputs = p: with p; [ IOInteractive ]; diff --git a/pkgs/build-support.nix b/pkgs/build-support.nix index fdaab17..e7a3716 100644 --- a/pkgs/build-support.nix +++ b/pkgs/build-support.nix @@ -2,7 +2,7 @@ _: { lib, perl, perlPackages, writeTextFile, ... }: { - c8h4.buildPerlApplication = { name, text, perlInputs ? (_: [ ]) + buildPerlApplication = { name, text, perlInputs ? (_: [ ]) , runtimeInputs ? [ ], derivationArgs ? { } }: writeTextFile { inherit name derivationArgs; diff --git a/pkgs/deploy-sink.nix b/pkgs/deploy-sink.nix index 46075c8..e44084d 100644 --- a/pkgs/deploy-sink.nix +++ b/pkgs/deploy-sink.nix @@ -1,6 +1,6 @@ -{ c8h4, rsync }: +{ buildPerlApplication, rsync }: -c8h4.buildPerlApplication { +buildPerlApplication { name = "deploy-sink"; runtimeInputs = [ rsync ]; perlInputs = p: with p; [ IOInteractive ]; diff --git a/pkgs/neomutt-export-patches.nix b/pkgs/neomutt-export-patches.nix index d093102..667dfa3 100644 --- a/pkgs/neomutt-export-patches.nix +++ b/pkgs/neomutt-export-patches.nix @@ -1,6 +1,6 @@ -{ c8h4, notmuch }: +{ buildPerlApplication, notmuch }: -c8h4.buildPerlApplication { +buildPerlApplication { name = "neomutt-export-patches"; runtimeInputs = [ notmuch ]; perlInputs = p: with p; [ IPCRun3 JSON ];