pkgs: build-support: remove unneeded prefix
All checks were successful
flake / build (push) Successful in 2m54s

Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-08-25 23:23:03 +02:00
parent 850c8a0cc1
commit 649c08429a
Signed by: c8h4
GPG key ID: 6817E9C75C0785D7
4 changed files with 7 additions and 7 deletions

View file

@ -1,6 +1,6 @@
{ c8h4, sudo }: { buildPerlApplication, sudo }:
c8h4.buildPerlApplication { buildPerlApplication {
name = "automation-shell"; name = "automation-shell";
runtimeInputs = [ sudo ]; runtimeInputs = [ sudo ];
perlInputs = p: with p; [ IOInteractive ]; perlInputs = p: with p; [ IOInteractive ];

View file

@ -2,7 +2,7 @@ _:
{ lib, perl, perlPackages, writeTextFile, ... }: { lib, perl, perlPackages, writeTextFile, ... }:
{ {
c8h4.buildPerlApplication = { name, text, perlInputs ? (_: [ ]) buildPerlApplication = { name, text, perlInputs ? (_: [ ])
, runtimeInputs ? [ ], derivationArgs ? { } }: , runtimeInputs ? [ ], derivationArgs ? { } }:
writeTextFile { writeTextFile {
inherit name derivationArgs; inherit name derivationArgs;

View file

@ -1,6 +1,6 @@
{ c8h4, rsync }: { buildPerlApplication, rsync }:
c8h4.buildPerlApplication { buildPerlApplication {
name = "deploy-sink"; name = "deploy-sink";
runtimeInputs = [ rsync ]; runtimeInputs = [ rsync ];
perlInputs = p: with p; [ IOInteractive ]; perlInputs = p: with p; [ IOInteractive ];

View file

@ -1,6 +1,6 @@
{ c8h4, notmuch }: { buildPerlApplication, notmuch }:
c8h4.buildPerlApplication { buildPerlApplication {
name = "neomutt-export-patches"; name = "neomutt-export-patches";
runtimeInputs = [ notmuch ]; runtimeInputs = [ notmuch ];
perlInputs = p: with p; [ IPCRun3 JSON ]; perlInputs = p: with p; [ IPCRun3 JSON ];