From 204731c0a69136c9cebcb54f1afecf5145e26bbe Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 23 May 2024 13:26:22 +0200 Subject: refactor(pkgs): Categorize into `by-name` shards This might not be the perfect way to organize a package set -- especially if the set is not nearly the size of nixpkgs -- but it is _at_ least a way of organization. --- pkgs/by-name/co/con2pdf/package.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/by-name/co/con2pdf/package.nix (limited to 'pkgs/by-name/co/con2pdf/package.nix') diff --git a/pkgs/by-name/co/con2pdf/package.nix b/pkgs/by-name/co/con2pdf/package.nix new file mode 100644 index 00000000..8eb994fd --- /dev/null +++ b/pkgs/by-name/co/con2pdf/package.nix @@ -0,0 +1,33 @@ +{ + sysLib, + writeText, + # dependencies + sane-backends, + imagemagick, + coreutils, + fd, +}: +sysLib.writeShellScript { + name = "con2pdf"; + src = ./con2pdf.sh; + generateCompletions = true; + keepPath = false; + dependencies = [ + sane-backends + imagemagick + coreutils + fd + ]; + replacementStrings = { + DEVICE_FUNCTION = + # This is here, because escaping the whole function, to use it in the shell script + # directly just isn't possible + writeText "DEVICE_FUNCTION" + /* + bash + */ + '' + scanimage -L | awk 'BEGIN { FS = "`" } { gsub(/'.*/, "", $2); print $2 }' + ''; + }; +} -- cgit 1.4.1