summaryrefslogtreecommitdiff
path: root/pkgs/lustrate/default.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2026-04-15 00:20:25 -0600
committerAlejandro Soto <alejandro@34project.org>2026-04-15 02:32:09 -0600
commit48e40ad4cff334d3187a7ee90bfbfcc44213fee8 (patch)
tree3a4ef20700323894e56c57d8348ed973557e1e3e /pkgs/lustrate/default.nix
parentf788e70bad24a8ee24813bc0096a4a8c9a7294a9 (diff)
pkgs: lustrate: initial commit
Diffstat (limited to '')
-rw-r--r--pkgs/lustrate/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/lustrate/default.nix b/pkgs/lustrate/default.nix
new file mode 100644
index 0000000..cf0a322
--- /dev/null
+++ b/pkgs/lustrate/default.nix
@@ -0,0 +1,6 @@
+{writeShellApplication, ...}:
+writeShellApplication {
+ name = "lustrate";
+ runtimeInputs = [];
+ text = import ./filters.nix + builtins.readFile ./lustrate.sh;
+}