about summary refs log tree commit diff
path: root/users/wpcarro/tools/systemd-shell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/tools/systemd-shell/default.nix')
-rw-r--r--users/wpcarro/tools/systemd-shell/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/tools/systemd-shell/default.nix b/users/wpcarro/tools/systemd-shell/default.nix
new file mode 100644
index 0000000000..eace76b708
--- /dev/null
+++ b/users/wpcarro/tools/systemd-shell/default.nix
@@ -0,0 +1,8 @@
+{ pkgs, ... }:
+
+pkgs.python310Packages.buildPythonApplication {
+  pname = "systemd-shell";
+  version = "0.0.1";
+  src = ./.;
+  doCheck = false;
+}